AJAX

PHP - Simple Live Data Search Using Ajax

Submitted by razormist on
Learn on how to create a Simple Live Data Search Using Ajax. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user friendly environment. Using Ajax, data could then be passed between the browser and the server, using the XMLHttpRequest API, without having to reload the web page.

PHP - Simple Search Using Ajax & MySQLi

Submitted by razormist on
Learn on how to create a Simple Search Using Ajax&MySQLi using PHP. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. Ajax is a client-side script that communicates to and from a server/database without the need for a postback or a complete page refresh. It is mostly used by a newly coders for its user friendly environment

PHP AJAX CRUD

Submitted by mohammed shafraz on
Hi everyone, In this tutorial you will learn how to create, insert, delete, and update data using AJAX in PHP and fetching data from database without reloading the page. In order to do this task, I have used jQuery Ajax function to perform an asynchronous HTTP request. More over in order to fetch data without refresh the page from database I have used ajax load method with setInterval. Here Is the

CodeIgniter Ajax File Upload using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles oh how to ajax upload file in CodeIgniter using jQuery. In order for us to send the file via ajax request, where gonna be using FileReader and FormData. File reader reads the selected file then Formdata holds our file for ajax request. We use jQuery for our ajax request which is a javascript library that makes you handle javascript better.

CodeIgniter Ajax Signup with Validation using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a signup/register form in CodeIgniter. We use jQuery to handle our server side signup request. jQuery is a javascript library that makes you use javascript easier. CodeIgniter is a lightweight PHP framework that uses MVC(Model-View-Controller) architecture.

PHP - Simple String Conversion

Submitted by razormist on
Learn on how to create a Simple String Conversion using PHP. This code can be use in converting some string easily and automated. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user friendly environment.

jQuery - Ajax Call onChange Event

Submitted by fkgeo on
In this tutorial we are covering JQuery--Ajax Call onChange in input in ajax call will be made and user picture will be retrieved from MySql and will be placed automatically on user pict if the username is wrong then anonymous picture will be placed 1. Create a login.php page coding of login.php Power Tricks by fk Login here Login Ajax page for retreive data from Database coding of ajaxPage.php

PHP Ajax MySQL Search Form

Submitted by Obro Megh on
Functionality: 1. Real Time search and show the result on page with Ajax. ;) 2. Simple Style. Installation First create the database and make table using this SQL code below. CREATE TABLE countries ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, name VARCHAR(50) NOT NULL ); In countries table what you put in name column it will be the search result and so on. ;) Then, Just change the backend-search