How can I delete this pattern from a text message?
[img:bac3cd275b]http://www.mydomain.com/images/blue.gif[/img:bac3cd275b]
or

Basically, I want to delete anything inside:
or
[img:bac3cd275b][/img:bac3cd275b]
as well as the
itself.
The following did not work...
<?
$img_pattern = '[img(.)?](.)?[\/img(.)?]';
$message = preg_replace($img_pattern,'', $message);
?>