Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8840319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:26:21+00:00 2026-06-14T10:26:21+00:00

in my program php, I want the user doesn’t enter any caracters except the

  • 0

in my program php, I want the user doesn’t enter any caracters except the alphabets
like that : “dgdh”, “sgfdgdfg” but he doesn’t enter the numbers or anything else like “7657” or “gfd(-” or “fd54”
I tested this function but it doesn’t cover all cases :

preg_match("#[^0-9]#",$_POST['chaine'])

how can I achieve that, thank you in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:26:22+00:00Added an answer on June 14, 2026 at 10:26 am

    The simplest can be

    preg_match('/^[a-z]+$/i', $_POST['chaine'])
    

    the i modifier is for case-insensitive. The + is so that at least one alphabet is entered. You can change it to * if you want to allow empty string. The anchor ^ and $ enforce that the whole string is nothing but the alphabets. (they represent the beginning of the string and the end of the string, respectively).


    If you want to allow whitespace, you can use:

    Whitespace only at the beginning or end of string:

    preg_match('/^\s*[a-z]+\s*$/i', $_POST['chaine'])
    

    Any where:

    preg_match('/^[a-z][\sa-z]*$/i', $_POST['chaine'])    // at least one alphabet
    

    Only the space character is allowed but not other whitespace:

    preg_match('/^[a-z][ a-z]*$/i', $_POST['chaine'])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a php program that redirects user to a page.(something like link shortener)
I want to design a page that user enter domain names and the program
I want to write a PHP program that takes an argument from the command
I am currently writing a program in php. I want to let the user
I have this shell program that I want to execute by php. The problem
I want to do a sample program in PHP on Windows XP. Do I
I have written php program and uploaded on server. I want run this program
I want to write a program to contact a PHP script online, and show
Debugging a PHP program, is there any add-on/plug-in for browser which I can view
I have a PHP program that has been written keeping in mind a single

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.