How to Post Java Source Codes in phpBB
PhpBB uses the standard BBCode tags to format posts. The BBCode "code" tag posts code snippets such as Java to a phpBB post. Use the code tag to display formatted Java code that highlights Java keywords and indents statements such as functions. The code tag makes it more convenient to read the code in the phpBB post.
Instructions
-
-
1
Open a Web browser tab and log in to your phpBB forum using your posting username and password.
-
2
Click the "New Thread" button to create a new thread, or click "Reply" to add a post to an existing phpBB thread.
-
-
3
Type the "code" tag into your post. The following BBCode is the "code" tag for Java posts:
[code] [/code]
-
4
Add your Java code between the code tags. For instance, the following Java code creates a variable:
string mycode = "This is a test";
-
1