alphanumeric registration fields

Discussion in 'Programming' started by sp360, Feb 19, 2008.

  1. #1
    Hi, does anyone know the code for it? I am making a signup script, but i need to know what the code to use for alphanumeric mandatory fields is.
     
    sp360, Feb 19, 2008 IP
  2. SoKickIt

    SoKickIt Active Member

    Messages:
    305
    Likes Received:
    30
    Best Answers:
    0
    Trophy Points:
    70
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    if(ctype_alnum($_POST['name'])) {
    // ok
    } else {
    // error
    }
    PHP:
     
    SoKickIt, Feb 19, 2008 IP