View Single Post
  #14 (permalink)  
Old 11-01-09, 10:48 PM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
You might want to change the 'return preg_match' lines to:

PHP Code:

$bResult=preg_match( ... );

if (!
$bResult)  /* If it didn't match okay */
  
return false;

/* Match okay, continue processing */ 
The Following User Says Thank You to wirehopper For This Useful Post:
PopSmith (11-01-09)