|
|
Retrieving database information with AJAX, PHP and MySQL
|
04/25/2006 By Shwaza
|
Over SomeCoders, Shwaza has written good tutorial showing how to Retrieve database information with AJAX, PHP and MySQL.
With the recent popularization of AJAX (Asynchronus Javascript And XML), it is now unnessecary to reload a page with the same basic layout, just to get new content. You can use AJAX to retrieve just the content without reloading the page, then change the value of a content area.Retrieve database information with AJAX, PHP and MySQL
First of all, to use AJAX you must understand how it works. AJAX is JavaScript that can run through the “AJAX Engine” and by doing so, retrieve data from a remote page through HTTP, without having a page reload. It is similar to PHP’s file_get_contents(), however it can be done through JavaScript as a client-side script.
The first thing we need, is a php file that we will call with AJAX. It doesn’t have to be PHP, but since it is the most popular server-side language, that is what we’ll use. If you have decent knowledge of another language you would like to use instead, I’m sure you could translate the code. In this file, we will use a GET variable to determine the MySQL query we need to perform. We are using GET because it is accessible by AJAX. The great thing about it is that the file you are calling can be incredibly simple, and just be straight textual information.
And there you have it, you’ve now got everything you need to make a simple page system using AJAX, PHP and MySQL. Just as a note, you’ll need to actually create rows in your table with page names home and page2 for this to work Those are just examples though so you can use them as a model for other links.
Read Full Tutorial ...
|
Rate this Ajax Tutorials
Rating: 7.3 out of 58 votes cast
| |
|
|
|
|
|
|
|
|
|
|
|
|