Delete me
From NewHaven Software Wiki
(Difference between revisions)
(Removing all content from page) |
|||
| Line 1: | Line 1: | ||
| - | + | <source lang="php"> | |
| + | <?php | ||
| + | $v = "string"; // sample initialization | ||
| + | ?> | ||
| + | html text | ||
| + | <? | ||
| + | echo $v; // end of php code | ||
| + | ?> | ||
| + | </source> | ||
Revision as of 18:24, 19 February 2009
<?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?>
