Tag Archives: ajax tutorial

Insert Data Using Radio Button in PHP Ajax

Using Ajax, we can insert data into mysql database using radio button without  refreshing the page. In some concept, we need to insert data into database and selected option value should remain as selected even after insert into database. This can be achieved when page wouldn’t refresh (i.e.,  using ajax script)   Database [code type=sql]… Read More »

Live Database Check using PHP Ajax

Most of the websites are using username as primary key, then username should not be repeated. In this article i am going to explain how to live check the username in database using ajax and php. There are two files register.php user_check.php Database username is the primary key.   Register.php [code type=html] <html> <head> <script… Read More »

Insert Values into Database Using Ajax

Using ajax and php script we can insert data into database. Without using ajax, we can insert data into database. But the difference between both are page won’t refresh when we use ajax with php. Without using ajax page will refreshes. While inserting values into database using ajax webpage won’t refresh, an additional php page… Read More »