[PHP] Current Member Check

2004-12-19 Thread Brad Ciszewski
Hi everyone, I am having some issues with this script. I am making a form which registers a user. However, i want to check that the email address isnt already registered in the database. Below is the syntax which i used. Please help me figure out what I did wrong. *connects to database* $email =

Re: [PHP] Current Member Check

2004-12-19 Thread Chris Shiflett
--- Brad Ciszewski [EMAIL PROTECTED] wrote: Please help me figure out what I did wrong. *connects to database* $email = $_POST[email]; $checkEmail = mysql_query(SELECT * FROM memberInformation WHERE email = '$email'); Please read this:

Re: [PHP] Current Member Check

2004-12-19 Thread Jason Wong
On Monday 20 December 2004 03:54, Chris Shiflett wrote: --- Brad Ciszewski [EMAIL PROTECTED] wrote: Please help me figure out what I did wrong. *connects to database* $email = $_POST[email]; $checkEmail = mysql_query(SELECT * FROM memberInformation WHERE