<?php
 
/* if you want to make some change do it in this page only */
 
/* name of the hostname */
 
$dbhost = "localhost";
 
/* username allowed to connect to the database */
 
$dbuname = "username";
 
/* password for the username */
 
$dbpass = "password";
 
/* name of the database */
 
$dbname = "database_name";
 
/* your web site data */
 
$addmail = "@YOUR_SITE_WEB.com" ;
 
/* from how are comming the mails */
 
$from = "webmaster" ;
 
/* to connect to the data base */
 
$db = mysql_connect("$dbhost", "$dbuname", "$dbpass");
 
/* select the database */
 
mysql_select_db("$dbname",$db);
 
?>
 
 |