RE: [PHP] newbie: regular expression suggestios

2002-01-31 Thread Rick Emery
ot;'Lee P Reilly'" <[EMAIL PROTECTED]>; "PHP List" <[EMAIL PROTECTED]> Sent: Thursday, January 31, 2002 2:27 PM Subject: RE: [PHP] newbie: regular expression suggestios > try: if (eregi("^[a-zA-Z0-9]*$", $name)) > > This searches fo

RE: [PHP] newbie: regular expression suggestios

2002-01-31 Thread Rick Emery
try: if (eregi("^[a-zA-Z0-9]*$", $name)) This searches for [a-zA-Z0-9] between start and end of line with no other intervening characters -Original Message- From: Lee P Reilly [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 31, 2002 1:45 PM To: PHP List Subject: [PHP] newbie: regula