Yep, I realise there was a discrepancy in the table names. That wasnt the
issue , i reposted the corrected code as soon as i realised.
> From: David Robley <[EMAIL PROTECTED]>
> Organization: Centre for Injury Studies
> Reply-To: [EMAIL PROTECTED]
> Date: Tue, 17 Jul 2001 12:53:57 +0930
> To: Brad Wright <[EMAIL PROTECTED]>, PHP General List
> <[EMAIL PROTECTED]>
> Subject: Re: [PHP] Whats wrong with this code?
>
> On Tue, 17 Jul 2001 12:37, Brad Wright wrote:
>>> From: Rasmus Lerdorf <[EMAIL PROTECTED]>
>>> Date: Mon, 16 Jul 2001 19:56:29 -0700 (PDT)
>>> To: Brad Wright <[EMAIL PROTECTED]>
>>> Cc: PHP General List <[EMAIL PROTECTED]>
>>> Subject: Re: [PHP] Whats wrong with this code?
>>>
>>>> Hi all, Im getting mighty frustrated with this peice of code. It
>>>> checks the first condition no probs, but the second IF statement
>>>> doesnt work. So it will stop if it finds a du[plicate login, but
>>>> cannot find duplicate passwords. the $num_rows2 variable always gets
>>>> the value '0' even when there is an existing password the same as
>>>> the new user-entered value.
>>>>
>>>> $result = mysql_query("SELECT * FROM Login_TB where
>>>> Login='$Login'",$db) or die ("ouch");
>>>>
>>>> $num_rows = mysql_num_rows($result);
>>>>
>>>> $query2 = "select * FROM Team_Login_TB where Pass =
>>>> password('$Pass')"; $result2 = mysql_query($query2,$db) or die
>>>> ("ouch2");
>>>> $num_rows2 = mysql_num_rows($result2);
>>>
>>> Your second query must not be returning any rows. Print out $query2
>>> and paste the string you see into the command line mysql tool and
>>> execute the query. I bet it will return 0 rows.
>>>
>>> -Rasmus
>
>> Rasmus,
>> you are dead right, it is returning 0 rows. I checked that before
>> submiytting the original post. Sorry, i should have mentioned it. I
>> guess the question is, why is it returning no rows?
>
> This might be too obvious, but are you looking in the correct table? Your
> second query searches a different table from the first? Alternatively,
> you might be getting something you don't expect in $Pass.
>
>
> --
> David Robley Techno-JoaT, Web Maintainer, Mail List Admin, etc
> CENTRE FOR INJURY STUDIES Flinders University, SOUTH AUSTRALIA
>
> 1200 bps used to seem so fast
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]