Hi
I am using bbcode to display images in articles. How can extract image bbcode to display also in frontpage as brief.
Hi there,
As a quick solution, you can convert things...
$bb = "[img]/path_to_image.jpg[/img]"; $html = $bb; $html = str_replace("[img]", "" , $html); $html = str_replace("[/img]", "" , $html); $html = "<img src=\"$html\" alt=\"\" />"; echo($html);