I'm trying to add some code that prevents a form entry if the phone number starts with 07405. I've tried the following with no such luck, any ideas?
HTML field:
<input type="tel" name="required[phone]" placeholder="Telephone Number" data-required="strict">
PHP:
case 'phone';
$phone = (sanitize_text_field($fields['phone']));
if (preg_match('07045', $phone))
{
$fields['valid_phone'] = $phone;
unset($fields['phone']);
}
else
{
unset($fields['phone']);
array_push($errors, 'phone');
}
break;
Cheers, Dan
You forgot delimiters at preg_match, and beginning of string (you try to match substring in whole string).
The second thing is that regex isn't necessary for this task, substr will be faster.