I want to accept only English character in a text box form validation in codeigniter.
Is there any built form validation method for this or should I use my own validation function for implementing this?
I want to accept only English character in a text box form validation in
Share
The rule you need is alpha. You could do something like this:
To ensure that what is entered contains only alphabetical values.
See the rule reference on the codeigniter documentation.