|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (10 bit)
|
Converting BBcode to HTML using php
Dont know if anyone knows of a simple way i can turn BBcode into html?
I'm working on a modification to the portal on my Vbulletin site on which i've just installed an arcade, now im trying to get the arcade news displayed in a module on the portal. just for now i've done it as a temorary page while i get it working (would post a link but its on my PW protected test site). Anyways, the string returned has BBcode in it so im getting something like (spaced it out a little) Code:
[ b]Designer[ /b] is the new [ b]Asteroids Champion[ /b] Code:
< b>Designer< /b> is the new < b>Asteroids Champion< /b>
__________________
Intel Core i7 920 2.66GHz | Asus P6T SE| 6GB Corsair ram | XFX Radeon HD 4780 | 2 x 250 Gb Maxtor SATA II (in RAID 0), 1 x 250GB SATA II | Creative XFI soundcard | Coolermaster 650W PSU | ThermalTake Tsunami case My new website -Carp Fishing Forums Last edited by Designer; 12-13-2005 at 06:52 AM. |
|
|
|
|
|
#2 |
|
Member (10 bit)
|
Ignore this, solved it myself
![]() Code:
$search=array("[ b]","[ /b]");
$replace=array("< b>","< /b>");
$newsbits = str_replace($search,$replace,$newsbits);
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|