Jump to content

why this warning??


new_php85

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.