PHP Classes

File: config.ini

Recommend this page to a friend!
  Classes of Alf-Red   Registration   config.ini   Download  
File: config.ini
Role: Configuration script
Content type: text/plain
Description: configuration file
Class: Registration
User registration with CAPTCHA image validation
Author: By
Last change:
Date: 19 years ago
Size: 584 bytes
 

Contents

Class file image Download
<?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);
?>