I believe everything is working ok, except that when I try to connect to MySQL, I get the following error:
"Client does not support authentication protocol requested by server; consider upgrading MySQL client"
This is the code I use to make a connection:
Code: Select all
$hostname_connUser = "localhost";
$database_connUser = "*****";
$username_connUser = "*****";
$password_connUser = "database_user";
$connUser = mysql_connect($hostname_connUser, $username_connUser, $password_connUser) or die(mysql_error());