PhoenixDown
Programmer
I'm using this to print he guestbook entries to a web browser:
if ($vars[12] =~ /[a-zA-Z0-9]+/) {
blah...blah...blah
}
Well, the [a-zA-Z0-9]+ causes a problem on my guestbook if someone uses ONLY a censored word. It would appear with *'s and corrupt the entry table.
So, my question is what can I change the [a-zA-Z0-9]+ to so instead of looking for only letters and numbers, it searches for any character? Thanks! Web site: Email: calvin@puremadnezz.com
AIM: XCalvin1984
MSN: xcloud2000x@hotmail.com
ICQ: 135616065 (I don't really use ICQ alot.)
Yahoo Messenger: xcloud2000x (I don't really use Yahoo messenger alot.)
Contact me for any programming help and whatnot.
if ($vars[12] =~ /[a-zA-Z0-9]+/) {
blah...blah...blah
}
Well, the [a-zA-Z0-9]+ causes a problem on my guestbook if someone uses ONLY a censored word. It would appear with *'s and corrupt the entry table.
So, my question is what can I change the [a-zA-Z0-9]+ to so instead of looking for only letters and numbers, it searches for any character? Thanks! Web site: Email: calvin@puremadnezz.com
AIM: XCalvin1984
MSN: xcloud2000x@hotmail.com
ICQ: 135616065 (I don't really use ICQ alot.)
Yahoo Messenger: xcloud2000x (I don't really use Yahoo messenger alot.)
Contact me for any programming help and whatnot.