allow alpha numberic not only number javascript code example
Example: text box should accept only alphanumeric not special characters in php
if(ctype_alnum($string)){
echo "Yes, It's an alphanumeric string/text";
}
else{
echo "No, It's not an alphanumeric string/text";
}