Jump to content

Email checking


ansarka

Recommended Posts

[!--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
Share on other sites

[!--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 Error
function 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>
<?php
return;
}
?>

Take this Coding., its working...

Umasankar Subramanian
Link to comment
Share on other sites

[!--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 Error
function 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>
<?php
return;
}
?>

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 reply

what i am looking for is if i enterd ansar@ansar.com

wheather ansar@ansar.com 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 ansar@ansar.com in to the databaseb table..then compare this with the user input(using database connections)... ok ya?

Umasankar Subramanian.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.