
Untitled
By: a guest on
Aug 3rd, 2012 | syntax:
PHP | size: 1.56 KB | hits: 22 | expires: Never
<?php
/////////////////////////
/////Config File///////
//Coded By Secured///
///////////////////
$config['host'] = ""; // your sql instance
$config['user'] = ""; // username
$config['pw'] = ""; // password
$config['db'] = ""; // db
$config['key'] = "2011"; // your md5 key
//Tite of your Site( will appear in copyright footer)
$config['title'] = "Site Title"; //Site Title
//colors (use only text names or hex color codes including "#")
$config['ecolor'] = "red"; //Error Color
$config['scolor'] = "green"; //Success Color
//Error Text (Can be left NULL (Blank))
$config['euname'] = "Username Must be 4-25 Characters."; //Missing Username or Length not long enough(4-25)
$config['nameex'] = "The Selected Username Already Exists."; //UserName Exsists
$config['epass'] = "Password Must be 5-25 Characters."; //Pass Missing or Length not long enough(5-25)
$config['eage'] = "Age Must be 1-3 Characters."; //age Missing or Length not long enough(1-2)
$config['vage'] = "Age should only be Numeric!"; //Age is not valid. (Meaning its something other than numbers.
$config['ecaptcha'] = "Captcha Code Seems to be Incorrect!"; //Captcha Code is Incorrect
//On Register Success Message
//You can use {user} {pass} {age} to make your message more spify it will replace it
//the actual var.
$config['success'] = "Registration Was Successful, {user}! Thanks for Joining";
//Ex: Registration Was Successful, Secured! Thanks for Joining!
//NOTE: Additional Configuration for Capcha Can be found in "inc/captcha/captcha.inc.php"!
?>