This is the code I have below can anyone tell me why it's not connecting to the servier.
<html>
<head>
<title>Connecting to MYSQL</title>
</head>
<body>
<?php
$connect = mysql_connect("127.0.0.1","","") or die(mysql_error());;
if ($connect != FALSE)
{
print "The connection was a success";
}
else
{
print "The connection was a failure";
}
mysql_close($connect);
?>
</body>
</html>