Collective: How to Create Ajax Search Using PHP jQuery and MYSQLJune 7, 2010

This tutorial shows how to create simple and attractive Ajax based search using PHP, jQuery, MySQL and Ajax. Demo available. Source http://www.99points.info/2010/06/ajax-tutorial-how-to-create-ajax-search-using-php-jquery-and-mysql/ Demo http://demos.99points.info/ajax_search/ ...

read more direct link

PHP/MySQL Contact Form with jQueryMarch 12, 2010

Here's an implementation of a contact form with PHP and jQuery. Usually, one would only want the message posted by the user to be sent to an email address. This script does that and also saves all these messages in the database for the admin to keep track of them. ...

read more

PHP Login System Reloaded v1.1September 16, 2009

Here's an updated version of the PHP Login System. You can check the old version here. The following was added: 1. Registration fields: email confirmation password confirmation country recaptcha Email confirmation and password confirmation are configurable fields. By def...

read more

Dynamically Changing Style with jQuerySeptember 6, 2009

The jQuery Style Slider allows you to change the style of certain html elements in real time and save the style setting to a MySQL database table using PHP. This makes the script interesting for user personalization. The script is based on the jQuery UI Slider Widget and the Sexy Vertical Slidin...

read more

PHP Login System ReloadedSeptember 3, 2009

Update: There's a new version of this Login Script. Here's a PHP Login System, based on the one developed by jpmaster77: PHP Login System with Admin Features Focusing only on the core functionalities and aimed to improve certain parts of the code, I took out some functionalities and added some o...

read more

Using MySQL transactions with PHPSeptember 1, 2009

The following is an example of using the transactional support in MySQL. Let's assume we have two tables, USERTBL and EMAILTBL. Let's consider the innodb engine, since it's the most popular transaction storage engine. CREATE TABLE USERTBL( USERKEY                     int unsigned no...

read more

Solving PHP MySQL UTF-8 issuesAugust 31, 2009

Heres a list of actions you should do in order to get PHP + MySQL working with UTF-8: 1. Database: CREATE DATABASE db_name CHARACTER SET utf8 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT COLLATE utf8_general_ci ; or if the database was already created: ALTER DATABASE ...

read more