[Solved] More than one preg_match queries? [closed]


if(preg_match($fullname_pattern,$fullname))
Remove Last “)”

And add here (preg_match($password_pattern,$password)))

Like this:

if(preg_match($fullname_pattern,$fullname)
&& preg_match($email_pattern,$email)
&& preg_match($password_pattern,$password)
) {

1

solved More than one preg_match queries? [closed]