Hi all, I have a small piece of code to check that a field is numeric only,
function validate_numeric($variable) {
return is_numeric($variable);
}
How can I check that text entered is text only ?
so to protect against malicous attacks. . .
Thanks