$pattern="/[a-z]*[a-z]*/i";
if(!preg_match($pattern, $value)){
$this->error_name="The name should contain at least two letters.";
}
I am trying to check if the user types his name with at least two letters. So basically, he cant enter his name as such 111111111111.. it must have two letters.
The regular expression that I wrote doesnt work..why?
Your code didn’t work because
*means zero or more times, so it would also match none or one character.