Formatting in PHP is quite simple, really.
heres an example of echoing some bold text:
[PHP] <?php
echo "Hello World";
?>[/PHP]
Also, newlines in PHP (ie
) are output like this:
[PHP]echo "Hello\nWorld"[/PHP]
The above would make:
[indent]Hello
World
[/indent]I hope this has helped you :D
Cheers