I am getting the following message when attempting to connect to a mySQL db in php:
"Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client "
I am using the following code:
////////////////////////
<?php
$Host = "localhost";
$User = "bogusname";
$Password = "boguspassword";
$DBName = "bogus";
$Link = mysql_connect ($Host, $User, $Password);
mysql_close ($Link);
?>
////////////////////////
Any ideas on why I am getting this warning message?