i dont get it, nothing is working:
<?PHP
if($HTTP_POST_VARS['submit']) {
mysql_connect("localhost","root","pass")
or die ("<div align=center><span class=text>Unable to connect to the database. Try again later.</span></div>");
mysql_select_db('root');
echo "INSERT INTO users ( user_name, user_pass, user_email, user_aimaol, user_msn, user_icq ) VALUES ( '$username', '$userpass', '$useremail', '$useraimaol', '$usermsn', '$usericq' ) "
or die ("<div align=center><span class=text>Unable to create user. Try again later.</span></div>");
if (!$username || !$userpass || !$confirmp || !$useremail || !$useraimaol || !$usermsn || !$usericq)
{
echo '<div align=center><span class=text>You have not entered all the fields. Please go back and fix the missing fields.</span></div>';
exit;
}
Else if ($userpass != $confirmp)
{
echo '<div align=center><span class=text>Your passwords do not match</span></div>';
exit;
}
} //end if
?>
nothing is creating that one little row.
not only is nothing working, but i dont get a die error message or anything, along with a random 1 popping up in front of my username input