$rex = \'/^[^<,\"@?=>|;#]$/i\';
I\'m having trouble with this regular expression. The idea is that the input fields are checked for certain chara
maybe "/(.*?)[^<,"@$?=>|;#]/i" or "/^[^<,"@$?=>|;#].*+$/i"
"/(.*?)[^<,"@$?=>|;#]/i"
/^[^<,"@$?=>|;#].*+$/i"
don't know exactly what you are trying to do