i am receiving and weird error in my connect script:
Warning: mysql_query(): Access denied for user 'ODBC'@'localhost' (using password: NO) in M:\1-Web Site\DebuggingVersionInPHP_debug_tmp.php on line 7
my script looks like this except there are letters instead of ****:
<?php
define('db_user', 'root');
define('db_host', '');
define('db_password', '***');
define('db_name', '***');
$dbc = mysql_connect( '', db_user, db_password);
mysql_select_db(db_name);
?>
I have apache, mysql, and php running on my local machine and that is how i am attepting to debug. I know that there is no user called ODBC and i am not assigning that variable. I don't know where it would come from. Any Ideas?