Jump to content

Check If Email Exists


lukeawade

Recommended Posts

Im just checking to see if the email exists in a table I have in my database and that actually works. I just cant get it to display on the same page under my email textfield. Currently if they dont put in an email and click submit then it shows an error. The code below is what I use to check if their email has already been put in the database. It works but the only problem is if their email already exists it takes me to a blank page and just says my error message. "'ERROR! The email '.$_POST['email'].' has already registered." I want it to display this message below my email text field(code below my email check code).

 

<?php //my email check above the body & head 
//checks if the email is registered
if (!get_magic_quotes_gpc()) {$_POST['email'] = addslashes($_POST['email']);}
$usercheck = $_POST['email'];
$check = mysql_query("SELECT email FROM dashboard_registration WHERE email = '$usercheck'") or die(mysql_error());
$check2 = mysql_num_rows($check);
//if the name exists it gives an error
if ($check2 != 0) {die ('ERROR! The email '.$_POST['email'].' has already registered.');}

//my text field in a table in the body
<input name="email" type="text" id="email" value="<?php echo $row_rsdashboard_registration['email']; ?>" size="32" />
<?php echo $tNGs->displayFieldError("dashboard_registration", "email"); ?>

Link to comment
https://forums.phpfreaks.com/topic/123508-check-if-email-exists/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.