Today I would like to show you Ajax login functionality implementation using PHP and MySQL. We gonna use the MySQL PDO driver in this tutorial.…
12 CommentsTag: Ajax
Here is the simple script to check live username or email availability using jQuery’s Ajax method in CodeIgniter. you can also apply this logic/method to…
2 CommentsThe HTTP_X_REQUESTED_WITH header is sent by all recent browsers that support AJAX requests. if (isset($_SERVER[‘HTTP_X_REQUESTED_WITH’]) && !empty($_SERVER[‘HTTP_X_REQUESTED_WITH’]) && strtolower($_SERVER[‘HTTP_X_REQUESTED_WITH’]) == ‘xmlhttprequest’ ) { // something…
Leave a Comment