I'm in the process of trying to connect to a database with the following:
$db_conn = mysql_connect("localhost", "root", "97svt") or die("unable to connect to the database");
mysql_select_db("techdb", $db_conn) or die("unable to select the database");
And I get an error like this one:
Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in C:\Apache\Apache2\htdocs\Forum\config.php on line 14
unable to connect to the database
I wanted to see if I have done something wrong. I'm using Apache 2.0 and MySQL 4.1.
Any help will be greatly appreciated!
Thanks,
Mike