Jump to content


Photo
* * * * * 1 votes

[PHP] BBCode Parser


  • Please log in to reply
40 replies to this topic

#41 derek.sullivan

derek.sullivan

    Jedi In Training

  • Members
  • PipPip
  • 343 posts
  • Gender:Male
  • Location:Georgia
  • Interests:preaching, programming, music, friends, outdoors, moves, books

Posted 30 June 2008 - 10:54 PM

make life easy lol

use the array function and str_replace

<?php

$bb_Code = array(
'[code]' => '<code>',
'[/ code ]' => '</ code>'
); // so on so forth with the bbcode

foreach ($bb_Code as $value => $replace) {

$text = str_replace($value, $replace, $text);

}

echo $text;

?>

simple stuff.

Edited by bigdfbc2008, 30 June 2008 - 10:55 PM.





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users