I am still trying to get a grasp on the php/mysql interaction. Why does something like this not work and without all the error catching, can one do something like this?
$result = mysql_query("SELECT * FROM stadium WHERE gametime = `$_z`;");
$row = mysql_fetch_row($result);
$bababa[name] = $row[0];
$bababa[town] = $row[1];
$bababa[playingA] = $row[2];
$bababa[playingB] = $row[3];
$bababa[3] = $row[4];
return $bababa;
What exactly is stored in $row in this case?