Portfolio
Scripts and Websites I've made using PHP and MySQL mainly.
Snippets
Code snippets and mini tutorials
Contact
Contact me if you have any questions or queries
Home / Projects / spiffy_bb

Spiffy BB

SpiffyBB is a basic and eays to use BBCode script.
BBCode is used in nearly all internet forums, blogs, comments sections, etc... which allows you to post things like:
[b]Bold![/b] :)
And have them displayed as:
Bold!
SpiffyBB supplies you with a few basic smiley images and the script to convert incoming text to BBcode through the use of a simple function.
Installation:
BBCode is used in nearly all internet forums, blogs, comments sections, etc... which allows you to post things like:
[b]Bold![/b] :)
And have them displayed as:
Bold!
SpiffyBB supplies you with a few basic smiley images and the script to convert incoming text to BBcode through the use of a simple function.
Installation:
- Download the zip file containing the script
- Upload it to the directory you wish to use it in on your web server, eg: public_html
Example Usage:
demo.php
<?php
@require_once('bbCode.inc.php');
$string = "[b]Bold![/b]
[i]Italic![/i]
:D :) :P";
echo bbCode($string);
?>
This will output the following to demo.php (or whatever you named your file):
Bold!
Italic!

So, very easy to use. You can of course customise it by adding more [tags] and smilies, changing the images for the smilies, etc... Whatever you want really.
Comments
No Comments Have Been Made


