Before we are going with example let’s read something about jQuery and AJAX.
In this example we are submitting a simple form using AJAX.
To create a form first we are creating a database with name “ajax”.
Create a config file with name config.php.
<? $dbhost = "localhost"; //replace it with your host name $dbuser="root"; //replace it with your database username $dbpassword=""; // replace it with your database password $dbname="ajax"; // replace it with your database name mysql_connect($dbhost,$dbuser,$dbpassword); mysql_select_db($dbname); ?> Continue reading