Lets say if i have a input (from a form) of
name
phone
<?
if($name ==\"|\"|$phone ==\"|\")
{
echo \"ERROR<BR>They key | is NOT a valid entry Go back and change it\";
Die;
}else{
}
?>
Works ok !!!
for if a use JUST puts \"|\"
BUT !!!!
If a user puts
Zeddy|myname
It will allow it,,, how can i make it look for a var anywhere in a input ?