Thats leaft me even more confused than I was!
Maybe you haven't understood what I'm trying to do, I'm trying to set this up from a development end, for example I would have my php page like so;
<?php
// Include to allow BBCode intergration into this file.
include ("bbcode.php");
// Html code for page.
echo ("
<html>
<head></head>
<body>
Look at my Bird! <br>
[image]http://www.birdys.com/birdy.gif[/image] <p>
Isnt she pretty!
</body>
</html>
");
?>
The above would output in the browser as the following;
<html>
<head></head>
<body>
Look at my Bird! <br>
<img src='http://www.birdys.com/birdy.gif'> <p>
Isnt she pretty!
</body>
</html>
I had a look at the PHPBB thingy, and it is way too complicated for me. I know it's a big ask but could someone please give me an example of what should be in bbcode.php to show my example in this post if it's possible! Also a repetition so I can understand how to repeat/add functions.