----- Original Message ----- 
From: "alternate_dph" 

Thanks, that showed me something else going on:

Fatal error: Call to undefined function mysql_connect() in
C:\wamp\www\tgs-answers.php on line 25

This is the line that generates the error:

mysql_connect(localhost,$username,$password);

Now, I know this function works because I use it on a remote server.
-------------------------
wrong synrax - 
mysql_connect(localhost,$username,$password);
use - 
mysql_connect("localhost",$username,$password);
or - 
mysql_connect('localhost',$username,$password);
or - 
mysql_connect($localhost,$username,$password);

Reply via email to