Wut command would use to determine if the string $text contains an "a"??
Well, you'll get about 50 answers...how 'bout [man]stristr/man?
if (stristr("abcdefg", "a")) { // returns true if "a" is in string "abcdefg"
Thats what I was looking for! Thanks alot!
U R Welcome....
Welcome to PHPBuilder, BTW!