Category Archives: Ajax

Store Value from On/Off Button in MySQL Database Using PHP Ajax

In most of the applications and in registration form, instead of using checkbox/radio button, animated on/off button being used to make user experience more user interface. Here is the tutorial for Store Value from On/Off Button in MySQL Database Using PHP Ajax. Selected value either it may be on/off, it will be stored in database.… Read More »

User Registration Using PHP Ajax

Already we are having an article about user registration. Here is the tutorial for user registration in php and ajax. User Registration in ajax makes registration of user without page refresh. By using ajax for registration process, USer interface will be good. Here is the simple database structure which has fields id, username, password and… Read More »

Google Like Auto Suggest Search Using PHP Ajax

Auto suggest search is a very important aspect in UI(User Interface). Here is the tutorial and demo for how to make google like auto suggest search using php ajax. Without auto suggest option in search functionality or in search engine, we can’t achieve user interface,  user navigation. This search tutorial will have the following files… Read More »

Check existing Password in Ajax and change the Password

Analyze the existing password from database without refresh using ajax concept. The given password is compared with existing password in database and display whether it is correct or not. Here Ajax is used to analyze or check the exisiting password with  The HTML, Ajax,Mysql coding are provided below.You can try if you need to check… Read More »

Send Multiple Data in Ajax

Ajax is used for send minimal amount of data to another php page and get result from that page. This tutorial will teach you how to send multiple data in ajax. Multiple data in the sense multiple variables. There are two methods jquery serialize() without serialize() jQuery Serialize() method index.php var form2=$(“#form1”).serialize(); – serialize() will get… Read More »

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 »