============================================
STORE UNIQUE EMAILS IN MYSQL DB
============================================

1. Run PhpMyAdmin or MySQL Compiler and execute the mysql code in the file [db.sql].

2. Open config.php and find:
$storeemail=0; //enable mysql store by setting it to 1
$mysqldomain="localhost"; //set your mysql server domain
$mysqlusername=""; //set mysql db username
$mysqlpassword=""; //set mysql db password
$mysqldbname=""; //set mysql db name

3. Run a test and use this code to show the records in the table:
SELECT * FROM contacts

Last Updated on [01 Feb 2007]