
July 29th, 2002
02:11 AM

If you'd like to have BBcode on your shoutbox.
been fondling around with regex and here's what i came up with. feel free to copy it. It's quite easy to add more tags.
$str = 'How cool this is bold but this is not
. However this is Italic..yay!!';
$bold = '/(\[B\])(.+)(\[\/B\])/';
$italic = '/(\[I\])(.+)(\[\/I\])/';
$str = preg_replace($bold,'<b>\\2</b>',$str);
$str = preg_replace($italic,'<i>\\2</i>',$str);
print $str;
if you want to add more, simply copy $bold or $italic and rename it. let's say i want to center certain text. I copy $bold and replace B with CENTER
$center = '/(\[CENTER\])(.+)(\[\/CENTER\])/';
then you copy one of the replace string, see the <b>\\2</b> ??? just change the tag to center, so for centering, you'll have <center>\\2</center>
now you have
$str = preg_replace($cemter,'<center>\\2</center>',$str);
cool eh? just keep doing it for every tags you want. I've worked on one for [IMG] [URL] tags but it's not easy to modify. The only tags i could think of is. <p> <center> <i> <b> <marquee> <blink> <small> <large>. So on...
___________________
http://celerondude.com

July 29th, 2002
02:15 AM
wouldnt it be <b>\\1</b> ?
___________________
What was I talking about?

-proud user of FIREBIRD

July 29th, 2002
02:17 AM
it's 2.
http://www.php.net/manual/en/function.preg-replace.php
0 is the whole thing
1 is the opening tage, [ B ]
2 is the text in between the tags
3 is the closing tag [/ B ]
___________________
http://celerondude.com
Last edited by CDude, July 29th, 2002 02:20 AM (Edited 1 times)

July 29th, 2002
02:17 AM
cool.............but I worry about people hacking using that, like you said in the "For those of you with shoutboxes" post.
___________________

:: KellenHolt.com
:: KellenHolt.com Forums - No Frills Discussion
:: Need Small Hosting Plan? CLICK

July 29th, 2002
02:19 AM
Originally posted by ikellen
cool.............but I worry about people hacking using that, like you said in the "For those of you with shoutboxes" post.
they can't hack it. there is no holes in this one. Even this forum uses it and it's been fine.
___________________
http://celerondude.com

July 29th, 2002
02:58 AM
Hey CDude nice stuff
++ckill3r
___________________
Grand Premier of CyberKill3r Episode I website on some time in the future. With a lot of tutorials and scripts free to download, and much more...
..::CyberKill3r.

July 29th, 2002
06:09 AM
Neverside Newbie
Status: Offline!
Yep nice code CDUDE
I'm sure this will help some people.
___________________
RAAAH

July 29th, 2002
09:12 AM
Lost in Hollywood
Status: Offline!
cool man:D
___________________
"The man who makes no mistakes does not usually make anything." - Edward J. Phelps

July 29th, 2002
01:15 PM
now...we want a 10 thousand page essay on how to write a forum like vBulletin PHP :madface
___________________
Current Project: LivermoreMuscle.com
Sig Hosted by Motorspin