Hey,
Can anyoner tell me what is wrong with this script? The *!#$en thing wont work 🙁
<?
mysql_connect($dbhost,$dbuser,$dbpass) or die ("Unable to access the database");
@mysql_select_db("$dbname") or die ("Unable to find the table results");
$sqlquerye = "INSERT INTO ten VALUES ('$round', '10', '$send_hometeam5', '$send_awayteam5', '$send_home5', '$send_away5')";
$resulte = mysql_query($sqlquerye);
if ($resulte == TRUE)
{
print "Results5 updated<br>";
}
else
{
print "Results5 not updated<br>";
}
?>