A: 
Geek Num 88
yes it works on mine too. I will set your answer as accepted but I would appreciate if you would explain me why my script doesn't work so I can understand what's wrong with it .regards,Michael !
Michael
a few things I see - 1) you shouldn't need to escape the quotes2) Use preg_match_all vs preg_match, preg_match_all finds all the matches vs the first match (which in this case is not the result you were looking for)3) you used * and ? in the pattern string, ? matches zero or one time, * matches zero or more times
Geek Num 88