Jayashiangel
Literotica Guru
- Joined
- Jan 17, 2004
- Posts
- 653
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

No. Try not.
Do or do not, there is no try.
tags will automatically indent the enclosed text.
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 theCode:tag to achieve this. For example: [code] <script language="**********"> <!-- alert("Hello world!"); //--> </script>
In the example above, the text enclosed in theCode:tags would be automatically indented, and the spacing would be preserved like this: <script language="**********"> <!-- 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"; } Incorrect vB Code Usage: * [url] www.vbulletin.com [/url] - don't put spaces between the bracketed code and the text you are applying the code to. * [email]myname@domain.com[email] - the end brackets must include a forward slash ([/email])