muroc
Wed 17th Mar '04, 2:45pm
After having installed MYSQL 4.1.1a and PHP4 with Apache 1.3, all on XP, for some reason, when I use mysql_connect () in my PHP scripts, it gives me the following error:
Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in "the file path directory of the script page"
I have the following PHP code:
$ser1 = mysql_connect ($host, $user, $pass);
mysql_select_db ("test",$ser1);
$myresult = mysql_query("SELECT * FROM musa",$server);
printf("................"));
mysql_close($ser1);
Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in "the file path directory of the script page"
I have the following PHP code:
$ser1 = mysql_connect ($host, $user, $pass);
mysql_select_db ("test",$ser1);
$myresult = mysql_query("SELECT * FROM musa",$server);
printf("................"));
mysql_close($ser1);