Hi lads. At the moment i have the preg_match function blocking users from signing up with first names such as ££%£ in my script. How would i modify this code
function check_first_name($first_name){
if(!preg_match("/[^a-zA-Z0-9\.\-\ß\ä\Ä\ü\Ü\ö\Ö\ ]+$/s",$first_name)) return TRUE;
else return FALSE;
}
to prevent users from signing up with the name 353£"£%£
Thanks