I am working with php and want to have a page that has a drop down on top. elements in the drop down have some id associated with them. Underneath the drop down there is a text box and underneath the text box some images. so like the following
<drop down box>
______________
<textbox _content_ loaded via ajax onchange of drop down box>
<some images loaded via ajax onchange of drop down box>
I want to query the DB everytime the drop down menu is changed and populate the text box with info from DB and load the images that were fetched from the DB.
is there some ajax library that can be used for this? I assume there will be a php page to execute the query and send the result back to the main page?
can you guys tell me some examples/tutorials I should be looking at.