Hello,
I am attempting to use PHP w/ a mysql database I have created and I am getting the following error while trying to connect to the database:
Fatal error: Call to undefined function: mysql_connect() in /www/meyercousa/pages/view_data.php on line 13
The syntax to connect to the database is as followed:
$db = mysql_connect('localhost', 'username', 'password');
mysql_select_db("meyerco", $db);
Line 13 is $db = mysql_connect.......Any suggestions?