RE: Strange error in PHP/MySQL

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



>  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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux