ok so apparently is_alpha() is not a php function!
what should i do in place of it?
Have a look at the ctype extension (enabled by default, check phpinfo() for details). Anyway, so you would use ctype_alpha() or another option is to use regular expressions, such as ereg() or preg_match()
awesome! thx!
is_alpha()?
What would that do?