Celauran wrote:Without seeing what line 5 is (and the surrounding lines, really), I can't help you much.
Whoops
var_dump($_POST)
if (!empty($_POST))
{
if (isset($_POST['username']) && isset($_POST['password']))
{
$connect = mysql_connect("localhost","root","") or die("Could not connect");
mysql_select_db("tracker") or die("Could not find database");
}
else
die("Incorrect information");
}
?>
Line 5 being
