Hi
I have the following code:
preg_match_all( "%Picture_[1-9][0-9]?%", $HTMLContent, $Pictures );
I want to catch all instances of %Picture(number here)% and put them into the $Pictures array. However, it is missing the percentage signs and just putting the Picture(number here) into the array.
Can someone tell me how to make it include the percentage signs in the array please?
Thanks,
Joe