I have a following problem: I would want to load MySQL table content dynamically, without page refresh to table using dropdown menu. I got it working with plain text with the help of this page: http://www.designing4u.de/2008/05/jquery-drop-down-loading-content-according-to-option/ but I don't know how to get content from MySQL table and print it to table instead of plain text.
For example if I have a MySQL table called "Animal" with 3 fields: Cat, Dog, Horse and a second field with information of a specific animal:
Animal ->
Cat, Dog, Horse ->
Is a cat, Is a dog, Is a horse
So I create a dropdown list: Cat, Dog, Horse and when pressing one of them, it prints information on that specific animal to HTML table.