This is a great Rich-text to BBCode editor that you can throw on your website. It works well with this tutorial.
Also I update the list for more items and security (just to save people some work)
function bbcode($text) {
$text = htmlentities($text);
$search = array(
'/\[b\](.*?)\[\/b\]/is',
'/\[i\](.*?)\[\/i\]/is',
'/\[u\](.*?)\[\/u\]/is',
'/\[s\](.*?)\[\/s\]/is',
'/\[sub\](.*?)\[\/sub\]/is',
'/\[sup\](.*?)\[\/sup\]/is',
'/\[img\](.*?)\[\/img\]/is',
'/\[url\](.*?)\[\/url\]/is',
'/\[url\=(.*?)\](.*?)\[\/url\]/is',
'/\[size\=(.*?)\](.*?)\[\/size\]/is',
'/\[color=(.*?)\](.*?)\[\/color\]/is',
'/\[center\](.*?)\[\/center\]/is',
'/\[right\](.*?)\[\/right\]/is',
'/\[left\](.*?)\[\/left\]/is',
'/\[justify\](.*?)\[\/justify\]/is',
'/\[youtube\](.*?)\[\/youtube\]/is',
'/\[font\=(.*?)\](.*?)\[\/font\]/is',
'/\[ul\](.*?)\[\/ul\]/is',
'/\[ol\](.*?)\[\/ol\]/is',
'/\[li\](.*?)\[\/li\]/is',
'/\[code\](.*?)\[\/code\]/is',
'/\[quote\](.*?)\[\/quote\]/is',
'[hr]',
'/\[email\=(.*?)\](.*?)\[\/email\]/is',
'/\[rtl\](.*?)\[\/rtl\]/is',
'/\[ltr\](.*?)\[\/ltr\]/is',
'/\[table\](.*?)\[\/table\]/is',
'/\[tr\](.*?)\[\/tr\]/is',
'/\[td\](.*?)\[\/td\]/is',
'/\[thead\](.*?)\[\/thead\]/is',
'/\[tbody\](.*?)\[\/tbody\]/is',
'/\[th\](.*?)\[\/th\]/is',
'/\[caption\](.*?)\[\/caption\]/is'
);
$replace = array(
'<strong>$1</strong>',
'<em>$1</em>',
'<u>$1</u>',
'<del>$1</del>',
'<sub>$1</sub>',
'<sup>$1</sup>',
'<img src="$1" />',
'<a href="$1">$1</a>',
'<a href="$1">$2</a>',
'<font size="$1">$2</font>',
'<a style=\'color:$1;\'>$2</a>',
'<center>$1</center>',
'<div style="text-align:right;">$1</div>',
'<div style="text-align:left;">$1</div>',
'<div style="text-align:justify;">$1</div>',
'<iframe id="ytplayer" type="text/html" width="640" height="360"
src="https://www.youtube.com/embed/$1" frameborder="0" allowfullscreen>',
'<a style=\'font-family:$1;\'>$2</a>',
'<ul>$1</ul>',
'<ol>$1</ol>',
'<li>$1</li>',
'<code>$1</code>',
'<blockquote>$1</blockquote>',
'<hr />',
'<a href=\'mailto:$1\'>$2</a>',
'<div style=\'direction: rtl\'>$1</div>',
'<div style=\'direction: ltr\'>$1</div>',
'<table>$1</table>',
'<tr>$1</tr>',
'<td>$1</td>',
'<thead>$1</thead>',
'<tbody>$1</tbody>',
'<th>$1</th>',
'<caption>$1</caption>'
);
$bb = preg_replace ($search, $replace, $text);
return $bb;
}