Jump to content

charles8555

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

charles8555's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi..i am new to php..currently i testing a few login file using encryption sha1..sometimes i got this weird happening..i try login in..and it works but sometimes it din't...of course with same password and username..issit a bug or anything and i also using session for the login part...can anyone give a tips??Thanks
  2. hi..thanks for replying my post..yea i think i solve the problem..thanks
  3. hello..everyone..i got the very weird problem with my connection to database..currently i doing some program with php and mysql, and i use include 'db.inc'; file for every php file where i want to query to the database..ok here is my problem...because of the covenience i use statment like i declare the variable as $hostName = "localhost"; $username = "root"; $password = "123"; $databaseName = "testing"; at my db.inc file $connection = mysql_connect($hostName, $username, $password); mysql_select_db($databaseName, $connection); but when i try to connect it give me an error message like this.. Error 1045 : Access denied for user 'root'@'localhost' (using password: YES) but i when i replace the above statment like below if(!($connection = @ mysql_connect("localhost", "root", "123"))) die("Cannot connect2"); if(!(mysql_select_db("testing", $connection))) showerror(); it is same thing isn't it...but i jus get the erro when i replace the above statement.. can anyone help me to figure it out..thanks..for viewing this thread..
×
×
  • 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.