I am having trouble connecting to my MySQL database: The error message I receive
in my browser is:
Fatal error: Call to undefined function: mysql_connect() in ../results.php on line 21
The line in question is a simple db connection:
$db = mysql_connect("localhost", "test", "test123");
Similar errors are receieved with mysql_pconnect, and others. This sounds like a
configuration problem, but ???
System info:
OS: Linux (Redhat 7.3)
MySQL: version 3.23.49, working normally
PHP: version 4.1.2-7, working normally, except for the database connection utilities
related rpms installed:
php-4.1.2-7.i386.rpm
php-devel-4.1.2-7.i386.rpm
php-mysql-4.1.2-7.i386.rpm
php-dbg-4.1.2-7.i386.rpm
Msql-Mysql-modules-11.2216.tar.gz
mysql-31.23.49a-pc-linux-gnu-i686.tar.gz
Any ideas??
- AFC