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
Here's a jQuery Image Gallery script with a multi file Uploader, that was implemented using three resources that I found on the web:
uploadify
ad-gallery
class.upload.php
click on the image to see a demo
It's easy to find a lot of good image galleries out there, a lot of upload ...
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