ansarka Posted May 3, 2006 Share Posted May 3, 2006 [!--sizeo:2--][span style=\"font-size:10pt;line-height:100%\"][!--/sizeo--][b] Is ther any code in php to check wheather the enter email id exist or not. Plz reply if you hv answer[/b][!--sizec--][/span][!--/sizec--] Link to comment https://forums.phpfreaks.com/topic/8954-email-checking/ Share on other sites More sharing options...
umasankar Posted May 3, 2006 Share Posted May 3, 2006 [!--quoteo(post=370830:date=May 3 2006, 06:06 AM:name=anuka)--][div class=\'quotetop\']QUOTE(anuka @ May 3 2006, 06:06 AM) [snapback]370830[/snapback][/div][div class=\'quotemain\'][!--quotec--][!--sizeo:2--][span style=\"font-size:10pt;line-height:100%\"][!--/sizeo--][b] Is ther any code in php to check wheather the enter email id exist or not. Plz reply if you hv answer[/b][!--sizec--][/span][!--/sizec--][/quote]Hi anuka,<?php//Check whether the submission is made if(!isset($_POST["hidSubmit"])){ $stremail="";DisplayForm();}else{//Validate the Email Address$stremail=$_POST["txtemail"];$result=ereg("^[^@ ]+@[^@ ]+\.[^@ ]+$",$stremail,$trashed);if(!$result){echo "Enter a valid E-mail Address";DisplayForm();}else{echo "E-mail Address is Ok";$stremail="";DisplayForm();}}//User-defined Function to display the form in case of Errorfunction DisplayForm(){global $stremail;?><form name="form1" method="post" action=""><table width="100%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#0033FF" bgcolor="#DEE3EF" ><tr><td width="100%"><table width="60%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#DEE3EF"><caption align="top" class="heading">E-Mail Validation<br><tr><td width="46%"><br><div align="right">Enter An Email Address </td><td width="54%"><br><input name="txtemail" type="text" class="textbox" id="txtemail" value="<?php echo $stremail; ?>"> </tr> <tr> <td colspan="2"> <div align="center"><br><input name="Submit" type="submit" class="button" value="Submit"><input name="hidSubmit" type="hidden" value="true"> </div></td></tr></td><?phpreturn;}?> Take this Coding., its working...Umasankar Subramanian Link to comment https://forums.phpfreaks.com/topic/8954-email-checking/#findComment-32899 Share on other sites More sharing options...
ansarka Posted May 3, 2006 Author Share Posted May 3, 2006 Umasankar Subramanian thank you for your replywhat i am looking for is if i enterd [email protected]wheather [email protected] is a existing email id Link to comment https://forums.phpfreaks.com/topic/8954-email-checking/#findComment-32903 Share on other sites More sharing options...
umasankar Posted May 3, 2006 Share Posted May 3, 2006 [!--quoteo(post=370845:date=May 3 2006, 07:12 AM:name=Umasankar Subramanian)--][div class=\'quotetop\']QUOTE(Umasankar Subramanian @ May 3 2006, 07:12 AM) [snapback]370845[/snapback][/div][div class=\'quotemain\'][!--quotec--]Hi anuka,<?php//Check whether the submission is made if(!isset($_POST["hidSubmit"])){ $stremail="";DisplayForm();}else{//Validate the Email Address$stremail=$_POST["txtemail"];$result=ereg("^[^@ ]+@[^@ ]+\.[^@ ]+$",$stremail,$trashed);if(!$result){echo "Enter a valid E-mail Address";DisplayForm();}else{echo "E-mail Address is Ok";$stremail="";DisplayForm();}}//User-defined Function to display the form in case of Errorfunction DisplayForm(){global $stremail;?><form name="form1" method="post" action=""><table width="100%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#0033FF" bgcolor="#DEE3EF" ><tr><td width="100%"><table width="60%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#DEE3EF"><caption align="top" class="heading">E-Mail Validation<br><tr><td width="46%"><br><div align="right">Enter An Email Address </td><td width="54%"><br><input name="txtemail" type="text" class="textbox" id="txtemail" value="<?php echo $stremail; ?>"> </tr> <tr> <td colspan="2"> <div align="center"><br><input name="Submit" type="submit" class="button" value="Submit"><input name="hidSubmit" type="hidden" value="true"> </div></td></tr></td><?phpreturn;}?> Take this Coding., its working...Umasankar Subramanian[/quote][!--quoteo(post=370849:date=May 3 2006, 07:16 AM:name=anuka)--][div class=\'quotetop\']QUOTE(anuka @ May 3 2006, 07:16 AM) [snapback]370849[/snapback][/div][div class=\'quotemain\'][!--quotec--]Umasankar Subramanian thank you for your replywhat i am looking for is if i enterd [email protected]wheather [email protected] is a existing email id[/quote]Ok. anuka,But, if u want to do this u have to work with the database isn't it..what i am trying to say is if we want to do comparison then we must require two fields...so first u store that [email protected] in to the databaseb table..then compare this with the user input(using database connections)... ok ya?Umasankar Subramanian. Link to comment https://forums.phpfreaks.com/topic/8954-email-checking/#findComment-32905 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.