Quote:
Originally Posted by Microsuck
I just wanted to let you know that this part:
PHP Code:
$connect=mysql_connect('localhost', 'root', 'glide75') or die(mysql_error());
echo "Connected to MySQL<br />";
Would output "Connected to MySQL" in addition to the mysql error if there is one.
|
That's a good thought, but in the case of a connection error the echo line wouldn't execute because die() ends the script.