http://www.killermovies.com/forums/misc.php?action=showbbcode
This link shows you all the tags you can use, some don't work now tho
The Code and PHP Tags
If you want to post some programming source code, or perhaps some ASCII art, which would require a non-proportional font, you can use the [code] tag to achieve this. For example:
[code]
<script language="Javascript">
<!--
alert("Hello world!"😉;
//-->
</script>
[/code]
In the example above, the text enclosed in the [code] tags would be automatically indented, and the spacing would be preserved like this:
<script language="Javascript">
<!--
alert("Hello world!"😉;
//-->
</script>
A special case is for code written in the PHP language. If you are posting PHP code, you can enclose the source code in [php] tags, and the script will automatically have syntax highlighting applied:
[php]
$myvar = "Hello World!";
for ($i=0; $i<10; $i++) {
echo $myvar."\n";
}
[/php]
This would produce:
$myvar = "Hello World!";
for ($i=0; $i<10; $i++) {
echo $myvar."\n";
}
This part I never understood but maybe skibs will know now he's doing coding