Jump to content

Recommended Posts

1) Use regex to check if it's a valid name.

2) If the email is a valid name, send a confirmation email with some sort of unique hash for the user to click on and send a request back to your server.

 

There are plenty of tutorials online and threads on this forum about this.  Don't reinvent the wheel, come back with specific questions...

Link to comment
https://forums.phpfreaks.com/topic/143015-email-validation/#findComment-749939
Share on other sites

Hey, I was just using a regex pattern for email, this is what the function looks like;

 

<?php
function emailCheck($n) {
$pattern = "~^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$~";
if(!preg_match($pattern, $n))
	return FALSE;
else
	return TRUE;
}

 

If it's a valid email address it will return true, if not it will return false... so;

 

<?php
$email = "name@mydomain.com";
if(emailCheck($email)) {
echo 'Valid Email';
} else {
echo 'Non-valid Email';
}

Link to comment
https://forums.phpfreaks.com/topic/143015-email-validation/#findComment-749946
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.