hi there,
I am totally new to php and i am using Dreamweaver 8. I am trying to create a page to initiate connection to the MySQL Server 5.0 at localhost, but the browser returns me this error message:
"Fatal error: Call to undefined function mysql_connect() in c:\Inetpub\wwwroot\My_PHP\connect_to_mysql.php on line 11"
The testing code i was trying as below:
<?php
$connection = mysql_connect('localhost', 'root', 'password');
if (!$connection) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($connection);
?>
Please help me to solve my problem. Thank y'all very much!