<html>
<head>
<body>
<?php include 'conn.php';?>
<?php
if (!isset($_POST['submit'])){
echo'<form method="post" action="#">
NAZIONE: <input type="text" name="NAZIONE">
<input type="submit" value="Send" name="submit">
</form>';

}

else {
$NAZIONE =mysql_real_escape_string($_POST['NAZIONE']);




$query = "INSERT INTO nazione SET nazione='".$NAZIONE."';


}

?>


</body>
</head>
</html>



ci sono quasi non riesco a capire dove è l'errore voi lo vedete?