I need your help. What does this mean?
Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\xampp\htdocs\THESIS\std_results.php on line 4 Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\xampp\htdocs\THESIS\std_results.php on line 4 Access denied for user 'ODBC'@'localhost' (using password: NO)
This is the code that I used when I got that message.
$answer = mysql_query("SELECT * FROM tbl_answers") or die(mysql_error());
$r = mysql_fetch_assoc($answer);
echo $r['id_exp'];
This is my first time encountering this kind of problem. Can someone explain to me how I can fix this?