>  if (mysql_query($sqlInsertUser, $conn))
>   $messagesqlInsertUser = 'Success...';
>  else
>   $messagesqlInsertUser = 'Error: ' . mysql_error();
>  $result = mysql_query($sqlInsertUser);

I see this being executed twice. ->     mysql_query($sqlInsertUser);  I
believe that is your problem.  Change the above code to look like this.

$result = mysql_query($sqlInsertUser);

if($result){
        $messagesqlInsertUser = 'Success...';
}else{
        $messagesqlInsertUser = 'Error: ' . mysql_error();
}

Cheers,

Brad

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to