pearweb_pepr
[ class tree: pearweb_pepr ] [ index: pearweb_pepr ] [ all elements ]

Source for file pepr-bbcode-help.php

Documentation is available at pepr-bbcode-help.php

  1. <?php
  2.  
  3. require_once 'pepr/pepr.php';
  4. response_header('PEPr :: BBCode Help');
  5.  
  6. ?>
  7.  
  8. <table width="100%" cellspacing="0" cellpadding="2" border="0">
  9.  <tr>
  10.   <td class="bodyline" bgcolor="white">
  11.  
  12.    <table width="100%" cellspacing="0" cellpadding="10" border="0">
  13.     <tr>
  14.      <td>
  15.  
  16. <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
  17.  <tr>
  18.   <th class="thHead"><h1>BBCode Guide</h1></th>
  19.  </tr>
  20.  <tr>
  21.   <td class="row1">
  22.    <span class="gen"><b>Introduction</b></span><br />
  23.    <span class="gen"><a href="#0" class="postlink">What is BBCode?</a></span><br />
  24.    <br />
  25.    <span class="gen"><b>Text Formatting</b></span><br />
  26.    <span class="gen"><a href="#1" class="postlink">How to create bold, italic and underlined text</a></span><br />
  27.    <span class="gen"><a href="#2" class="postlink">How to change the text colour or size</a></span><br />
  28.    <span class="gen"><a href="#3" class="postlink">Can I combine formatting tags?</a></span><br />
  29.    <br />
  30.    <span class="gen"><b>Quoting and outputting fixed-width text</b></span><br />
  31.    <span class="gen"><a href="#4" class="postlink">Quoting text in replies</a></span><br />
  32.    <span class="gen"><a href="#5" class="postlink">Outputting code or fixed width data</a></span><br />
  33.    <br />
  34.    <span class="gen"><b>Generating lists</b></span><br />
  35.    <span class="gen"><a href="#6" class="postlink">Creating an Un-ordered list</a></span><br />
  36.    <span class="gen"><a href="#7" class="postlink">Creating an Ordered list</a></span><br />
  37.    <br />
  38.    <span class="gen"><b>Creating Links</b></span><br />
  39.    <span class="gen"><a href="#8" class="postlink">Linking to another site</a></span><br />
  40.    <br />
  41.    <span class="gen"><b>Showing images in posts</b></span><br />
  42.    <span class="gen"><a href="#9" class="postlink">Adding an image to a post</a></span><br />
  43.    <br />
  44.   </td>
  45.  </tr>
  46.  <tr>
  47.   <td class="catBottom" height="28">&nbsp;</td>
  48.  </tr>
  49. </table>
  50.  
  51. <br clear="all" />
  52.  
  53. <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
  54.  <tr>
  55.   <td class="catHead" height="28" align="center"><h2>1</h2></td>
  56.  </tr>
  57.  <tr>
  58.   <td class="row1" align="left" valign="top"><span class="postbody"><a name="0"></a><b>What is BBCode?</b></span><br /><span class="postbody">BBCode is a special implementation of HTML. Whether you can actually use BBCode in your posts on the forum is determined by the administrator. In addition, you can disable BBCode on a per post basis via the posting form. BBCode itself is similar in style to HTML: tags are enclosed in square braces [ and ] rather than &lt; and &gt; and it offers greater control over what and how something is displayed. Depending on the template you are using you may find adding BBCode to your posts is made much easier through a clickable interface above the message area on the posting form. Even with this you may find the following guide useful.<br /><a class="postlink" href="#Top">Back to top</a></span></td>
  59.  </tr>
  60.  <tr>
  61.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  62.  </tr>
  63. </table>
  64.  
  65. <br clear="all" />
  66. <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
  67.  <tr>
  68.   <td class="catHead" height="28" align="center"><h2>1</h2></td>
  69.  </tr>
  70.  <tr>
  71.   <td class="row1" align="left" valign="top"><span class="postbody"><a name="1"></a><b>How to create bold, italic and underlined text</b></span><br /><span class="postbody">BBCode includes tags to allow you to quickly change the basic style of your text. This is achieved in the following ways: <ul><li>To make a piece of text bold enclose it in <b>[b][/b]</b>, eg. <br /><br /><b>[b]</b>Hello<b>[/b]</b><br /><br />will become <b>Hello</b></li><li>For underlining use <b>[u][/u]</b>, for example:<br /><br /><b>[u]</b>Good Morning<b>[/u]</b><br /><br />becomes <u>Good Morning</u></li><li>To italicise text use <b>[i][/i]</b>, eg.<br /><br />This is <b>[i]</b>Great!<b>[/i]</b><br /><br />would give This is <i>Great!</i></li></ul><br /><a class="postlink" href="#Top">Back to top</a></span></td>
  72.  </tr>
  73.  <tr>
  74.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  75.  </tr>
  76.  <tr>
  77.   <td class="row2" align="left" valign="top"><span class="postbody"><a name="2"></a><b>How to change the text colour or size</b></span><br /><span class="postbody">To alter the color or size of your text the following tags can be used. Keep in mind that how the output appears will depend on the viewers browser and system: <ul><li>Changing the colour of text is achieved by wrapping it in <b>[color=][/color]</b>. You can specify either a recognised colour name (eg. red, blue, yellow, etc.) or the hexadecimal triplet alternative, eg. #FFFFFF, #000000. For example, to create red text you could use:<br /><br /><b>[color=red]</b>Hello!<b>[/color]</b><br /><br />or<br /><br /><b>[color=#FF0000]</b>Hello!<b>[/color]</b><br /><br />will both output <span style="color:red">Hello!</span></li><li>Changing the text size is achieved in a similar way using <b>[size=][/size]</b>. This tag is dependent on the template you are using but the recommended format is a numerical value representing the text size in pixels, starting at 1 (so tiny you will not see it) through to 29 (very large). For example:<br /><br /><b>[size=9]</b>SMALL<b>[/size]</b><br /><br />will generally be <span style="font-size:9px">SMALL</span><br /><br />whereas:<br /><br /><b>[size=24]</b>HUGE!<b>[/size]</b><br /><br />will be <span style="font-size:24px">HUGE!</span></li></ul><br /><a class="postlink" href="#Top">Back to top</a></span></td>
  78.  </tr>
  79.  <tr>
  80.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  81.  </tr>
  82.  <tr>
  83.   <td class="row1" align="left" valign="top"><span class="postbody"><a name="3"></a><b>Can I combine formatting tags?</b></span><br /><span class="postbody">Yes, of course you can; for example to get someones attention you may write:<br /><br /><b>[size=18][color=red][b]</b>LOOK AT ME!<b>[/b][/color][/size]</b><br /><br />this would output <span style="color:red;font-size:18px"><b>LOOK AT ME!</b></span><br /><br />We don't recommend you output lots of text that looks like this, though! Remember that it is up to you, the poster, to ensure that tags are closed correctly. For example, the following is incorrect:<br /><br /><b>[b][u]</b>This is wrong<b>[/b][/u]</b><br /><a class="postlink" href="#Top">Back to top</a></span></td>
  84.  </tr>
  85.  <tr>
  86.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  87.  </tr>
  88. </table>
  89.  
  90. <br clear="all" />
  91. <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
  92.  <tr>
  93.   <td class="catHead" height="28" align="center"><h2>1</h2></td>
  94.  </tr>
  95.  <tr>
  96.   <td class="row1" align="left" valign="top"><span class="postbody"><a name="4"></a><b>Quoting text in replies</b></span><br /><span class="postbody">There are two ways you can quote text: with a reference or without.<ul><li>When you utilise the Quote function to reply to a post on the board you should notice that the post text is added to the message window enclosed in a <b>[quote=""][/quote]</b> block. This method allows you to quote with a reference to a person or whatever else you choose to put. For example, to quote a piece of text Mr. Blobby wrote, you would enter:<br /><br /><b>[quote="Mr. Blobby"]</b>The text Mr. Blobby wrote would go here<b>[/quote]</b><br /><br />The resulting output will automatically add: Mr. Blobby wrote: before the actual text. Remember that you <b>must</b> include the quotation marks "" around the name you are quoting -- they are not optional.</li><li>The second method allows you to blindly quote something. To utilise this enclose the text in <b>[quote][/quote]</b> tags. When you view the message it will simply show: Quote: before the text itself.</li></ul><br /><a class="postlink" href="#Top">Back to top</a></span></td>
  97.  </tr>
  98.  <tr>
  99.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  100.  </tr>
  101.  <tr>
  102.   <td class="row2" align="left" valign="top"><span class="postbody"><a name="5"></a><b>Outputting code or fixed width data</b></span><br /><span class="postbody">If you want to output a piece of code or in fact anything that requires a fixed width with a Courier-type font, you should enclose the text in <b>[code][/code]</b> tags, eg.<br /><br /><b>[code]</b>echo "This is some code";<b>[/code]</b><br /><br />All formatting used within <b>[code][/code]</b> tags is retained when you later view it.<br /><a class="postlink" href="#Top">Back to top</a></span></td>
  103.  </tr>
  104.  <tr>
  105.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  106.  </tr>
  107. </table>
  108.  
  109. <br clear="all" />
  110. <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
  111.  <tr>
  112.   <td class="catHead" height="28" align="center"><h2>1</h2></td>
  113.  </tr>
  114.  <tr>
  115.   <td class="row1" align="left" valign="top"><span class="postbody"><a name="6"></a><b>Creating an Un-ordered list</b></span><br /><span class="postbody">BBCode supports two types of lists, unordered and ordered. They are essentially the same as their HTML equivalents. An unordered list ouputs each item in your list sequentially one after the other indenting each with a bullet character. To create an unordered list you use <b>[list][/list]</b> and define each item within the list using <b>[*]</b>. For example, to list your favorite colours you could use:<br /><br /><b>[list]</b><br /><b>[*]</b>Red<br /><b>[*]</b>Blue<br /><b>[*]</b>Yellow<br /><b>[/list]</b><br /><br />This would generate the following list:<ul><li>Red</li><li>Blue</li><li>Yellow</li></ul><br /><a class="postlink" href="#Top">Back to top</a></span></td>
  116.  </tr>
  117.  <tr>
  118.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  119.  </tr>
  120.  <tr>
  121.   <td class="row2" align="left" valign="top"><span class="postbody"><a name="7"></a><b>Creating an Ordered list</b></span><br /><span class="postbody">The second type of list, an ordered list gives you control over what is output before each item. To create an ordered list you use <b>[list=1][/list]</b> to create a numbered list or alternatively <b>[list=a][/list]</b> for an alphabetical list. As with the unordered list items are specified using <b>[*]</b>. For example:<br /><br /><b>[list=1]</b><br /><b>[*]</b>Go to the shops<br /><b>[*]</b>Buy a new computer<br /><b>[*]</b>Swear at computer when it crashes<br /><b>[/list]</b><br /><br />will generate the following:<ol type="1"><li>Go to the shops</li><li>Buy a new computer</li><li>Swear at computer when it crashes</li></ol>Whereas for an alphabetical list you would use:<br /><br /><b>[list=a]</b><br /><b>[*]</b>The first possible answer<br /><b>[*]</b>The second possible answer<br /><b>[*]</b>The third possible answer<br /><b>[/list]</b><br /><br />giving<ol type="a"><li>The first possible answer</li><li>The second possible answer</li><li>The third possible answer</li></ol><br /><a class="postlink" href="#Top">Back to top</a></span></td>
  122.  </tr>
  123.  <tr>
  124.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  125.  </tr>
  126. </table>
  127.  
  128. <br clear="all" />
  129. <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
  130.  <tr>
  131.   <td class="catHead" height="28" align="center"><h2>1</h2></td>
  132.  </tr>
  133.  <tr>
  134.   <td class="row1" align="left" valign="top"><span class="postbody"><a name="8"></a><b>Linking to another site</b></span><br /><span class="postbody">phpBB BBCode supports a number of ways of creating URIs, Uniform Resource Indicators better known as URLs.<ul><li>The first of these uses the <b>[url=][/url]</b> tag; whatever you type after the = sign will cause the contents of that tag to act as a URL. For example, to link to phpBB.com you could use:<br /><br /><b>[url=http://www.phpbb.com/]</b>Visit phpBB!<b>[/url]</b><br /><br />This would generate the following link, <a href="http://www.phpbb.com/" target="_blank">Visit phpBB!</a> You will notice the link opens in a new window so the user can continue browsing the forums if they wish.</li><li>If you want the URL itself displayed as the link you can do this by simply using:<br /><br /><b>[url]</b>http://www.phpbb.com/<b>[/url]</b><br /><br />This would generate the following link: <a href="http://www.phpbb.com/" target="_blank">http://www.phpbb.com/</a></li><li>Additionally phpBB features something called <i>Magic Links</i>which will turn any syntatically correct URL into a link without you needing to specify any tags or even the leading http://. For example typing www.phpbb.com into your message will automatically lead to <a href="http://www.phpbb.com/" target="_blank">www.phpbb.com</a> being output when you view the message.</li><li>The same thing applies equally to email addresses; you can either specify an address explicitly, like:<br /><br /><b>[email]</b>no.one@domain.adr<b>[/email]</b><br /><br />which will output <a href="emailto:no.one@domain.adr">no.one@domain.adr</a> or you can just type no.one@domain.adr into your message and it will be automatically converted when you view.</li></ul>As with all the BBCode tags you can wrap URLs around any of the other tags such as <b>[img][/img]</b> (see next entry), <b>[b][/b]</b>, etc. As with the formatting tags it is up to you to ensure the correct open and close order is following. For example:<br /><br /><b>[url=http://www.phpbb.com/][img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/url][/img]</b><br /><br />is <u>not</u> correct which may lead to your post being deleted so take care.<br /><a class="postlink" href="#Top">Back to top</a></span></td>
  135.  </tr>
  136.  <tr>
  137.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  138.  </tr>
  139. </table>
  140.  
  141. <br clear="all" />
  142. <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
  143.  <tr>
  144.   <td class="catHead" height="28" align="center"><h2>1</h2></td>
  145.  </tr>
  146.  <tr>
  147.   <td class="row1" align="left" valign="top"><span class="postbody"><a name="9"></a><b>Adding an image to a post</b></span><br /><span class="postbody">phpBB BBCode incorporates a tag for including images in your posts. Two very important things to remember when using this tag are: many users do not appreciate lots of images being shown in posts and second, the image you display must already be available on the Internet (it cannot exist only on your computer, for example, unless you run a webserver!). There is currently no way of storing images locally with phpBB (all these issues are expected to be addressed in the next release of phpBB). To display an image, you must surround the URL pointing to the image with <b>[img][/img]</b> tags. For example:<br /><br /><b>[img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/img]</b><br /><br />As noted in the URL section above you can wrap an image in a <b>[url][/url]</b> tag if you wish, eg.<br /><br /><b>[url=http://www.phpbb.com/][img]</b>http://www.phpbb.com/images/phplogo.gif<b>[/img][/url]</b><br /><br />would generate:<br /><br /><a href="http://www.phpbb.com/" target="_blank"><img src="/gifs/pearsmall.gif" alt="" /></a><br /><br /><a class="postlink" href="#Top">Back to top</a></span></td>
  148.  </tr>
  149.  <tr>
  150.   <td class="spaceRow" height="1"><img src="/gifs/spacer.gif" alt="" width="1" height="1" /></td>
  151.  </tr>
  152. </table>
  153.  
  154.  
  155.  
  156. <div align="center"><span class="copyright"><br /><br />
  157. <!--
  158.  We request you retain the full copyright notice below including the link to www.phpbb.com.
  159.  This not only gives respect to the large amount of time given freely by the developers
  160.  but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good
  161.  reason) retain the full copyright we request you at least leave in place the
  162.  Powered by phpBB 2.0.6 line, with phpBB linked to www.phpbb.com. If you refuse
  163.  to include even this then support on our forums may be affected.
  164.  
  165.  The phpBB Group : 2002
  166. // -->
  167.  
  168.      </td>
  169.     </tr>
  170.    </table>
  171.  
  172.  
  173.    <table width="100%" border="0" cellspacing="0" cellpadding="0">
  174.     <tr>
  175.      <td class="bgBottom" height="37" align="center">
  176.      <p style="color: #444444; text-align: center; padding: 0; margin: 0; font-size: 10px; padding-top: 2px; ">Powered by <a href="http://www.phpbb.com" class="copyright">phpBB</a> &copy; 2001, 2003 <a href="/about.php" class="copyright">phpBB Group</a></td>
  177.     </tr>
  178.    </table>
  179.   </td>
  180.  </tr>
  181. </table>
  182. </body>
  183. </html>
  184.  
  185. <?php
  186. response_footer();

Documentation generated on Mon, 11 Mar 2019 15:44:05 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.