Quote:
Originally Posted by filburt1
echo preg_replace("/\[mp3\](.*)\[\/mp3\]/esiU", $replace, $string);
|
Thanks filburt1, I am still having trouble though. I have tried several variations of this and can't seem to get it right. I tried adding the line you gave me to the bottom, like this:
Code:
// Media hack begin
if (is_member_of($bbuserinfo, 6))
$string= "\[MP3\]song\[/MP3\]";
$pattern= "#\[mp3\](.*)\[/mp3\]#siU";
$replace= "<b>$1</b>";
echo preg_replace("/\[mp3\](.*)\[\/mp3\]/siU", $replace, $string);
// Media hack end
Both with and without the e (execute) function.
I also wonder if I shouldn't be applying this to showthread.php instead of functions_bbcodeparse.php? So you guys know exactly what I am after here I created a new bbcode [MP3]www.site.com/song.mp3[/MP3] and I don't want that bbcode to show up for a specific (unregistered) group. Thanks again for any help