Jump to content

[SOLVED] Code rewrite help needed


acctman

Recommended Posts

I would like to have the code re-written so that it will rejects all characters that are not A-Z,a-z,0-9.

 

please do not reply if you do not wish to help out.

thanks.

 

//illegal characters in username?
        $illegal = array('#','?','&','"','/','%','!','$','\'','*','-','_','~');
        foreach ($illegal as $value)
            if (strpos($en['user'],$value) !== false)
                $ill = true;

        if ($ill)
            $err .= _reg_illegal.'<br>';

Link to comment
Share on other sites

Then you want to check if the username is alphanumeric. Use ctype_alnum():

 

<?php
//illegal characters in username?
        if (!ctype_alnum($en['user']))
            $err .= _reg_illegal.'<br>';
?>

 

wow that's it, using !ctype_alnum takes care of everything?  that really shorten the coding by a lot.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.