I have a dropdown list that is automatically populated with book titles from a database. When I select a item from the dropdown list I want a text area next to it to show the description of the book from the database.
Is there a way to do this without the use of Javascript? I thought maybe create a PHP function that queries the database and grabs the book description by the title passed and place in the OnChange event but I do not know how to show the result in text area.
And I assume if I want a live update without refreshing the page I will need javascript.
Thanks in advance.