Example of what i'm trying to do:
PHP Code:
<?php if(strpos($invalidcharacters,$_POST[$wildcardstring]))
{
echo "Invalid Characters Detected!";
} else {
///continue
}
?>
Comment