PHP and AJAX Example
To clearly illustrate how easy it is to access information from a database using Ajax and PHP, we are going to build MySQL queries on the fly and display the results on "ajax.html". But before we...
View ArticlePHP AJAX and MySQL
AJAX can be used for interactive communication with a database. AJAX Database Example The following example will demonstrate how a web page can fetch information from a database with AJAX: Select a...
View ArticlePHP – AJAX and XML
AJAX can be used for interactive communication with an XML file. AJAX XML Example The following example will demonstrate how a web page can fetch information from an XML file with AJAX: Select a CD:Bob...
View ArticlePHP AJAX Live Search
AJAX can be used to create more user-friendly and interactive searches. AJAX Live Search The following example will demonstrate a live search, where you get search results while you type. Live search...
View ArticlePHP example – AJAX RSS Reader
AJAX RSS Reader An RSS Reader is used to read RSS Feeds. The following example will demonstrate an RSS reader, where the RSS-feed is loaded into a webpage without reloading: Select an RSS-feed:Google...
View ArticlePHP Example – AJAX Poll
The following example will demonstrate a poll where the result is shown without reloading. Do you like PHP and AJAX so far? Yes: No: Example Explained – AJAX Poll HTML Page When a user choose an...
View Article