I made a website, and when i added a already made Donation's page it puts in correctly but i think i am getting something wrong... i am not getting any errors or anything its just that it allows me to type any name in even thought the character doesn't exist and says it does...
Here is the Generic Config
Code:
<?php
//Mysql Information. This is the information for the site's database, NOT your ascent server's.
define(MYSQL_HOST,"localhost"); // The mysql host for your webserver.
define(MYSQL_USER,"root"); // Mysql username
define(MYSQL_PASS,""); // Mysql password
define(MYSQL_DATA,"donations"); // Database the donation tables are in.
// Path information, EXTREMELY IMPORTANT that you do these right or this will not work.
define(SITE_URL,"http://www.your-site.com"); // COMPLETE url to your web site, NO TRAILING SLASH!
define(SYS_PATH,"/donations"); // Path to the directory this file is in, beginning with a slash.
// Currency information.
define(CURRENCY_CODE,"USD"); // Currency code to be used by PayPal.
define(CURRENCY_CHAR,"$"); // Symbol representing your currency code.
// PayPal information. Use 'www.sandbox.paypal.com' if you wish to test with the sandbox.
define(PAYPAL_URL,"www.paypal.com"); // Only change this for sandbox testing.
define(PAYPAL_EMAIL,"[email protected]"); // The account that donations will go to.
// Mail information.
define(MAIL_SUBJECT,"Thank You"); // Subject of the reward mail.
define(MAIL_BODY,"Thank you for supporting our server! Here is your reward!"); // Mail message.
//Misc
define(ACP_USERNAME,"username"); // Username to access the ACP
define(ACP_PASSWORD,"password"); // Password to access the ACP
?>
The only thing i don't know what to put is colored in light green... im using Wamp and its in the start... like wamp/www and the index.php and config.php is there so what do i put??