This works well, but only if [IMG] is UPPER-CASE,
$text = "[IMG]goldeneye.gnw.de/images/LOL.gif[IMG]";
$text = ereg_replace("[IMG]([[IMG]*)[IMG]", "<img src=\"http://\1\">", $text);
echo $text;
RESULT: http://goldeneye.gnw.de/images/LOL.gif
but it should work in lower-case,too, so I added an i in the ereg_replace command. But now it doesn't replace
$text = "[img]goldeneye.gnw.de/images/LOL.gif[img]";
$text = eregi_replace("[IMG]([[IMG]*)[IMG]", "<img src=\"http://\1\">", $text);
echo $text;
RESULT:
[img]goldeneye.gnw.de/images/LOL.gif[img]