Help in textbox

Go4Expert Member
21Feb2011,20:07   #1
darkbernz's Avatar
hello everyone

i need help in may page. I need a textbox that only accepts alphabets. how it is done?

thanks.
Skilled contributor
25Feb2011,20:11   #2
ManzZup's Avatar
alphabets == alpha_simple_capital??
you mean without numbers, slashes, commas ?

if its that you need to make a JS script that runs at the text change so that if the keyCode is not among the 'alphabet' values then its not added to the textbox
or simply a php script which detect it as an error and show the error message
shabbir like this
Go4Expert Member
25Feb2011,20:23   #3
darkbernz's Avatar
oh i see.. tnx manzzup..
i will just create a JS.

hmm.. i wanna know how to use php script to detect numbers and special characters and show the error when these characters was inputed in my textbox..
Skilled contributor
26Feb2011,06:46   #4
ManzZup's Avatar
for the php script, you'll be getting the input form POST or GET as usual
and then run it through a func. just like the JS one

something like;

function isAllAlpha($str){
//your coding
return true or false
}

if(isAllAlpha($_POST['txt'])) echo "OK";
else echo "Error";

Last edited by ManzZup; 26Feb2011 at 06:57..
Ambitious contributor
9Mar2011,03:28   #5
pein87's Avatar
php has isNumeric() and isNaN() functions you could use to check if its a number. Then create an array with all special characters and loop through it to see if the content contains them or use regex to perform a search for numbers and special characters. Its best if you did this on the client end though since it wont burn server resources doing it.
Light Poster
22Mar2011,07:57   #6
etiergjt's Avatar
I think regex is good to handle this
Get the input and see if its the type you want with preg_match