Allow only capital and small letters

前端 未结 5 629
暗喜
暗喜 2021-01-18 07:59

I would like to accept only small and capital letters from the user.

I tried the below code, it echoes the invalid character message but doesn\'t work. I mean it doe

5条回答
  •  执笔经年
    2021-01-18 08:33

    use this , this is giving me correct answer

    if(!preg_match ('/^([a-zA-Z]+)$/', $fname)){
        echo "Invalid characters";
    }
    else{
        echo "correct";
    }
    

提交回复
热议问题