Re-read my previous email. You do not have mysql functionality compiled into PHP and you web server. The clue is the phrase "undefined function: mysql_connect()". How did you load PHP, MYSQL, etc?
-----Original Message----- From: Martin Allan Jensen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 10:26 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] mysql_connect() Sorry folks, last time i wrote it to fast....! Well here is the hole story.... We got an organisation to install a new version of phpmyadmin, mySQL and PHP 4.0.6 on our Cobalt Raq 4r server (Linux) They got it installed and phpmyadmin is working fine....but when i call fro a script souch as %%%%%%%%%%%%% <? // Connecting, selecting database $link = mysql_connect("127.0.0.10", "phpcoder_dk", "pdw") or die("Could not connect"); print "Connected successfully"; mysql_select_db("phpcoder_dk") or die("Could not select database"); // Performing SQL query $query = "SELECT * FROM hits"; $result = mysql_query($query) or die("Query failed"); ?> %%%%%%%%%%%%% The script writes this..... %%%%%%%%%%%%% Fatal error: Call to undefined function: mysql_connect() in /home/sites/site2/web/sql.php on line 3 %%%%%%%%%%%%% You can test it at http://www.phpcoder.dk/sql.php I really hope that someone will help me cause i really can't find the problem by myself.......! Kind regards Martin Allan Jensen -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php