AJAX can be used for interactive communication with a database.
The Below example will demonstrate how a web page can fetch information from a database with AJAX:
When a user selects a customer in the dropdown list above, a function called "showCustomer()" is executed. The function is triggered by the "onchange" event:
The showCustomer() function does the following:
The page on the server called by the JavaScript above is an ASP file called "getcustomer.html".
The server file could easily be rewritten in PHP, or some other server languages. Look at a corresponding example in PHP.
The source code in "getcustomer.html" runs a query against a database, and returns the result in an HTML table:
Your Query was successfully sent!