User

Difference between revisions of "Chris Davenport"

From Joomla! Documentation

(New page: <source lang=PHP source=1>if (true) echo 'true';</source>)
 
Line 1: Line 1:
<source lang=PHP source=1>if (true) echo 'true';</source>
+
<source lang="php">
 +
<?php
 +
    v = "string";    // sample initialization
 +
?>
 +
html text
 +
<?
 +
    echo v;         // end of php code
 +
?>
 +
</source>

Revision as of 19:15, 29 December 2007

<?php
    v = "string";    // sample initialization
?>
html text
<?
    echo v;         // end of php code
?>