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.
So basically, if the connection fails, it will display the error and Connected to MySQL.
I am not very good at PHP, but I believe you could write an if statement for this.
PHP Code:
if ($connect) {
echo "Connected to MySQL<br />";
}
else {
die();
}