07-21-2000, 05:31 PM
Here are some bbcodes I'de like to share, usage is:
red text
big text
They should be inserted into global.php about line 233
$bbcode=eregi_replace("(\[color=)([^]]*)(])([^[]*)(\[/color\])", "<font color=\\2>\\4</font>",$bbcode);
$bbcode=eregi_replace("(\[size=)([^]]*)(])([^[]*)(\[/size\])", "<font size=\\2>\\4</font>",$bbcode);
I think the [ url= ] tags should be converted to this format too, because there seems to be a problem with multiple [ url= ] tags in your code, which mines doesn't:
$bbcode=eregi_replace("(\[url=)([^]]*)(])([^[]*)(\[/url\])", "<a href=\"\\2\" target=_blank>\\4</a>",$bbcode);
Hope you like them :)
red text
big text
They should be inserted into global.php about line 233
$bbcode=eregi_replace("(\[color=)([^]]*)(])([^[]*)(\[/color\])", "<font color=\\2>\\4</font>",$bbcode);
$bbcode=eregi_replace("(\[size=)([^]]*)(])([^[]*)(\[/size\])", "<font size=\\2>\\4</font>",$bbcode);
I think the [ url= ] tags should be converted to this format too, because there seems to be a problem with multiple [ url= ] tags in your code, which mines doesn't:
$bbcode=eregi_replace("(\[url=)([^]]*)(])([^[]*)(\[/url\])", "<a href=\"\\2\" target=_blank>\\4</a>",$bbcode);
Hope you like them :)