im trying to add a wee chat room to ma site but got stuck so can someone give me a clue please.
im upto this part ive put in ma DB name ma user name and pass but stuck at stuff below it
// ------ THESE SETTINGS MUST BE COMPLETED ------
// Database settings
define("C_DB_TYPE", 'mysql'); // SQL server type ("mysql", "pgsql" or "odbc")
define("C_DB_HOST", 'localhost'); // Hostname of your MySQL server
define("C_DB_NAME", 'my DB name here); // Logical database name on that server
define("C_DB_USER", 'my user name); // Database user
define("C_DB_PASS", 'my password '); // Database user's password
this bit im stuck (how stuff at top is ok) wat do i need to put in??
define("C_MSG_TBL", 'c_messages'); // Name of the table where messages are stored
define("C_USR_TBL", 'c_users'); // Name of the table where user names are stored
define("C_REG_TBL", 'c_reg_users'); // Name of the table where registered users are stored
define("C_BAN_TBL", 'c_ban_users'); // Name of the table where banished users are stored
this is the error i get
MY problem