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
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
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
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
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
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
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