I hope someone can help me. I'm trying to connect to the mysql database server using php object-oriented script. I receiving this error.
Fatal error: Class 'mysql' not found in /www/uuuq.com/m/a/r/maric/htdocs/GosselinGourmetCoffees.php on line 23
<?php
$DBConnect = new mysql ("localhost", "user", "password", "databasename")
if (!$DBConnect)
echo <p>The database server is not available.</p>
$DBConnect->close();
?>