With following php preg_match i'm trying to show a error message if someone input any value except a-z or 0-9 in a textarea form. Just only user can type string and numerice value. Not , < ? >any php, javascript tag etc.
if(preg_match("/^[a-zA-Z0-9]+/ ", $wall) != 1)
$err[] = "Wrong value";
So, if i put php tag to the begning of the form then it's show error message but if i put "Some text then type php tag and another value" then it's doesn't show any error message.
Sorry my bad english.:(