Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

PHP : quick preg_match function question

Options
  • 14-12-2005 1:47am
    #1
    Registered Users Posts: 3,514 ✭✭✭


    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
    [PHP]function check_first_name($first_name){
    if(!preg_match("/[^a-zA-Z0-9\.\-\ß\ä\Ä\ü\Ü\ö\Ö\ ]+$/s",$first_name)) return TRUE;
    else return FALSE;
    }[/PHP]

    to prevent users from signing up with the name 353£"£%^£
    Thanks


Advertisement