<?php
$league = mysql_real_escape_string($_POST["command"]);
$command1 = mysql_real_escape_string($_POST["command1"]);
$command2 = mysql_real_escape_string($_POST["command2"]);
$gol2 = intval($_POST["gol1"]);
$gol2 = intval($_POST["gol2"]);
$comment = mysql_real_escape_string($_POST["textarea"]);
$res = mysql_query("insert into `jos_fifa_res` (`league`, `command1`, `command2`, `gol1`, `gol2`, `coment`)
VALUES ('$league', '$command1', '$command2', $gol1, $gol2, '$comment')");
if($res) {
echo 'Не гони, данные нормально добавились!';
} else {
echo 'Error: ' . mysql_error();
}
?>
так попробуй