I'm a C.S. student and my teacher has recently assigned me a linux machine that had already had MySQL installed on it. I managed to set the root password, but that's about all I've changed.
When I try to connect to the MySQL server in a web page I created I use the following command.
$connect = mysql_connect("132.235.15.134:8080", "root", "Eval11s") or
die ("Hey check connect");
However I recieve this error on my browser...
Fatal error: Call to undefined function: mysql_connect() in /var/www/html/createmovie.php on line 2
by the way, I am using the "mysql_connect" function inside the php tags.
Is there something I'm missing here?
Thanks
Tim