RE: Re[2]: [PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Hutchins, Richard
gt; Subject: Re: Re[2]: [PHP-DB] Begining PHP...Have Questions > > > That explains it. I did look at the manual and it did show . > instead of , > It just didnt even hit me. One of those kick yourself mistakes. > > Thanks, > > Aaron > > > "Pablo M. R

Re: Re[2]: [PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Aaron Todd
That explains it. I did look at the manual and it did show . instead of , It just didnt even hit me. One of those kick yourself mistakes. Thanks, Aaron "Pablo M. Rivas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello Aaron, > > why are you using , instead of . ? > >

Re[2]: [PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Pablo M. Rivas
Hello Aaron, why are you using , instead of . ? $query = "SELECT * FROM users WHERE email='",$_POST['username'],"'"; is this a typo?... this sould be: $query = "SELECT * FROM users WHERE email='".$_POST['username']."'"; or $query = "SELECT * FROM users WHERE emai