new_php85 Posted October 10, 2008 Share Posted October 10, 2008 ii... i got this warning. what happen ya? Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO)in C:\wamp\www\new\create.php on line 6 Access denied for user 'ODBC'@'localhost' (using password: NO) this is sample code untill line 7 <?php require("config.php"); require("./lang/lang.admin." . LANGUAGE_CODE . ".php"); mysql_connect(hostdb, userdb, passdb) or die(mysql_error()); mysql_select_db(namedb) or die(mysql_error()); Link to comment https://forums.phpfreaks.com/topic/127821-why-this-warning/ Share on other sites More sharing options...
Bendude14 Posted October 10, 2008 Share Posted October 10, 2008 are the hostdb etc meant to be $variables or have you DEFINED them somewhere? if there meant to be vars you don't have any $? try hardcoding the credentials in first see if that works like so mysql_connect('localhost', 'username', 'password'); Link to comment https://forums.phpfreaks.com/topic/127821-why-this-warning/#findComment-661733 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.