|
Posted by Jerry Stuckle on 08/09/07 20:37
nfantis wrote:
> On Aug 9, 7:31 am, upendra...@gmail.com wrote:
>> Dear friends,
>>
>> I am running the code
>> $check_1 = mysql_query("SELECT * FROM user WHERE u_name = '".
>> $_POST['username']."'") or die(mysql_error());
>>
>
> Its probably your SQL statement. You aren't ending it with a
> semicolon.
>
> Use this: $check_1 = mysql_query("SELECT * FROM user WHERE u_name =
> '" .
> $_POST['username']"';") or die
> mysql_error();
>
> Notice the semicolon right after the single colon before the
> parenthesis.
>
A semicolon isn't required when calling MySQL via a function in PHP (or
C, for that matter).
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|