anyone know what im doing wrong?
THE ERROR
Picture

Detailed
Code:
Notice: Use of undefined constant MYSQL_HOST - assumed 'MYSQL_HOST' in C:\wamp\www\donations\config.php on line 3
Notice: Use of undefined constant MYSQL_USER - assumed 'MYSQL_USER' in C:\wamp\www\donations\config.php on line 4
Notice: Use of undefined constant MYSQL_PASS - assumed 'MYSQL_PASS' in C:\wamp\www\donations\config.php on line 5
Notice: Use of undefined constant MYSQL_DATA - assumed 'MYSQL_DATA' in C:\wamp\www\donations\config.php on line 6
Notice: Use of undefined constant SITE_URL - assumed 'SITE_URL' in C:\wamp\www\donations\config.php on line 9
Notice: Use of undefined constant SYS_PATH - assumed 'SYS_PATH' in C:\wamp\www\donations\config.php on line 10
Notice: Use of undefined constant CURRENCY_CODE - assumed 'CURRENCY_CODE' in C:\wamp\www\donations\config.php on line 13
Notice: Use of undefined constant CURRENCY_CHAR - assumed 'CURRENCY_CHAR' in C:\wamp\www\donations\config.php on line 14
Notice: Use of undefined constant PAYPAL_URL - assumed 'PAYPAL_URL' in C:\wamp\www\donations\config.php on line 17
Notice: Use of undefined constant PAYPAL_EMAIL - assumed 'PAYPAL_EMAIL' in C:\wamp\www\donations\config.php on line 18
Notice: Use of undefined constant MAIL_SUBJECT - assumed 'MAIL_SUBJECT' in C:\wamp\www\donations\config.php on line 21
Notice: Use of undefined constant MAIL_BODY - assumed 'MAIL_BODY' in C:\wamp\www\donations\config.php on line 22
Notice: Use of undefined constant ACP_USERNAME - assumed 'ACP_USERNAME' in C:\wamp\www\donations\config.php on line 25
Notice: Use of undefined constant ACP_PASSWORD - assumed 'ACP_PASSWORD' in C:\wamp\www\donations\config.php on line 26
Notice: Undefined variable: DESCRIPTIONS in C:\wamp\www\donations\index.php on line 45
my config file
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,"joejoe"); // 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.localhost/donations"); // 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,"root"); // Username to access the ACP
define(ACP_PASSWORD,"joejoe"); // Password to access the ACP
?>
pic of the config file

i also added the sql to the database but i think its connecting okay, because it shows the fields i added in the vote control panel, like items, realm, cost

thanks for reading