In my form, i do some verifications before registering in database
if( isset($form['lastname']) && !empty($form['lastname']) && !preg_match ('/[^a-z]/i', $form['lastname']))
{
}
this does not accept accents like "benoît" or "hélène"
Does anyone know to make them allowed ? thanks in advance