Allow only capital and small letters

前端 未结 5 600
暗喜
暗喜 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:16

    if(!isset($_POST['fname']) || !ctype_alpha($_POST['fname'])){
      // can i haz alpha letters only?
    }
    

    (reference)

提交回复
热议问题