<?
$conn = mysql_connect("localhost","chaotici_commu","dragon");
$db = mysql_select_db("chaotici_chaotic");
$mail = $_POST['email'];
$gender = $_POST['txtgender'];
$month = $_POST['txtmonth'];
$bday = $_POST['txtbday'];
$byear = $_POST['txtbyear'];
$place = $_POST['country'];
$stat = $_POST['status'];
$hood = $_POST['hood'];
$prov = $_POST['txtprov'];
$postal = $_POST['txtpostal'];
$a = $_POST['aol'];
$m = $_POST['msn'];
$i = $_POST['icq'];
$commen = $_POST['txtcomments'];
$result= MYSQL_QUERY("INSERT INTO users (id, username, password, txtcomments, email, txtgender, txtmonth, txtbday, txtbyear, country, status, hood, txtprov, txtpostal, aol, msn, icq)". "VALUES ('NULL', '$username', '$password', '$commen', '$mail', '$gender', '$month', '$bday', '$byear', '$place', '$stat', '$hood', '$prov', '$postal', '$a', '$m', '$i', 'commen')");
echo "Your name and password have been submitted into our database :)";
?>
How come it won't send it to the database.Is there something wrong???