Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 09:23, 25 November 2009 by Catglobe (talk | contribs) (Created page with 'This extension adds the <source> tag to present formatted source code On the wiki page, you can now use "source" elements:<source lang="php"> <?php $v = "string"; // sampl…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This extension adds the

 tag to present formatted source code
On the wiki page, you can now use "source" elements:<source lang="php">
<?php
    $v = "string";    // sample initialization
?>
html text
<?
    echo $v;         // end of php code
?>