Showing posts with label ajax. Show all posts
Showing posts with label ajax. Show all posts

Saturday, June 18, 2016

AJAX Based Chat

This class can be used to implement a simple Web based chat system that uses AJAX to update the chat dialog display area without reloading the whole page.

The class generates a page with a Web form to submit what each chat line that the users type.

The chat lines are sent to the server using a XMLHttpRequest object.

The chat lines are received by a server side script that uses the class to store what each user entered in a MySQL database table.

In response, the class outputs the chat list already formatted to by displayed in the user browser pages.

chat.php Class The Main Class 2,662

 chat.sql Data The SQL code 527

 refresh.php Aux. Retrieve data from class 189

 submit.php Aux. Submits data to the class 201

 index.php Example Example file 69

You can download those files from phpclasses.org or from:
Download all files: ajax-chat-2006-10-06.zip (104380 bytes)

Friday, June 10, 2016

PHP Script Ajax Shopping Cart

Free AJAX Shopping Cart with Paypal & Google Checkout Through the use of HTML, jQuery, AJAX, PHP core, XML, XSL and CSS Easy Basket has become a true two part application. A developer can easily install Easy Basket without having to change the designer mark-up, a designer has complete control over the look and feel of their basket through the use of skins. Easy Basket works on any web platform simply copy to your websites public root. As all calls to the core are via AJAX you can have access to Paypal and Google Checkout on any type of webpage be it HTML ASP NET PHP... please visit the installation page for three easy steps to install your free ajax Shopping Cart.

Download Ajax Shopping Cart PHP Script

Submit PHP Form without Page Refresh using jQuery Ajax

In today's tutorial i am going to share the most useful jQuery functions $.ajax() and $.post(), using these two functions you can submit the PHP Web Forms without Refreshing the whole Web Page of Your Site, The jQuery get() and post() methods are used to request data from the server with an HTTP GET or POST request, hence $.post() function is a Shorthand Ajax method, so this tutorial will guide you that how to use jQuery's $.ajax() and $.post() functions easily to submit PHP Form Data to the Server Web Page without Refreshing the Page, let's see it in detail.
Submit PHP Form without Page Refresh using jQuery, Ajax
Read more »

Wednesday, June 8, 2016

Easy Ajax Image Upload with jQuery PHP

In this tutorial we have a simple script which will Upload an Image using jQuery Ajax with PHP, we have simple file uploading tutorial on this blog but how about using ajax, it is very simple to upload an image to the server via jQuery ajax() without refreshing the whole page, once an image was uploaded it will be viewed on the same page. PHP code was used at the back-end which will select and upload an image and the uploading process will be done by jQuery ajax() method, let's take a look.
Easy Ajax Image Upload with jQuery, PHP without Page Refresh
Read more »

Sunday, June 5, 2016

Ajax Calendar PHP Script

This class can be used to display month calendars browse able using AJAX. It can generate HTML and JavaScript to display a month calendar with links to browse the months using AJAX to avoid page reloading. The class can make given days be displayed as links to event pages. The browsing may be restricted to given dates. The months and week day names are customizable. The presentation details may be customized using CSS.


Download Ajax Calendar PHP Script

Sunday, May 29, 2016

Ajax Registration Script using jQuery with PHP and MySQL

This tutorial will show you how to create Ajax Signup form with jQuery using PHP MySQL and PDO. this will also guide creating a simple registration form using BootStrap, in most of websites you might have seen a registration form which accepts data from users and store into MySQL database without page refresh, this tutorial will also cover an important jQuery Validation part, proper validation using jQuery and database connectivity using PHP, you can look at live demo and try it yourself from the given download link, let's take a look.
Ajax Registration Script using jQuery with PHP and MySQL
Read more »

Friday, May 6, 2016

Ajax Login Script with jQuery PHP MySQL and Bootstrap

This tutorial will explain you, how to create a Login Script using jQuery Ajax with PHP MySQL, well this is my continuation post after Registration post using jQuery and Ajax, so in this tutorial i am going to create a simple login form using Bootstrap. email and password will be validate if user leave it empty after it a form will br submitted using $.ajax() method and send the users value to the main login page all the process will done without page refresh, before proceed you can go through the demo and download the script, let's start the coding.
Ajax Login Script with jQuery, PHP MySQL and Bootstrap
Read more »

Thursday, January 21, 2016

jQuery Username Availability Live Check with PHP and Ajax

In this tutorial you will learn How to create a Username Availability Live check Script using jQuery Ajax and PHP, it's easy to create, i have used here $.ajax() you can also use $.post() method to create same script, flow is simple as user types preferred username in the input box then "$.ajax()" function calls an HTTP POST request dynamically and fetch the username from the MySQL Database Table through the PHP Script and shows that the username available or not all the functionality will done by "$.ajax()" keyup() event, have a look.
jQuery Username Availability Live Check with PHP and Ajax
Read more »