Snippet
<?php
function bb($text)
{ //start the function
$array= array( //creates an array which allows you to add/edit BBCode functionality
"[b]" => "<strong>",
"[/b]" => "</strong>",
"[i]" => "<em>",
"[/i]" => "</em>",
"[u]" => "<u>",
"[/u]" => "</u>",
"[center]" => "<div align=center>",
"[/center]" => "</div>",
"[big]" => "<h1>",
"[/big]" => "</h1>",
"[nl]" => "<br>",
// to add more, simply enter them in a "$tag" => "$replacement_tag", format
);
return $newtext;
}
?>
Copy & Paste
|