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