Jump to content

preg_match help


CBG

Recommended Posts

Hi,

 

I am using preg_match to check the email address, but I also want to check for

With @ or + like: myemail+email.com

 

I currently got

if (preg_match('/^[^@]+@[a-zA-Z0-9._-]+\.[a-zA-Z]+$/', $email)) {

 

But it give falso if + is in the email, what bit do I change?

 

Also I need to allow / in the below preg_match

So I can have a input of www.mysite.co.uk/mypage

if (preg_match('/^[a-zA-Z0-9 ._-]+$/', $website)) {

 

When I put / in the allow I get

Warning: preg_match() [function.preg-match]: Unknown modifier '_' in .........

Link to comment
https://forums.phpfreaks.com/topic/198843-preg_match-help/
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.