Delete me: Difference between revisions
From NewHaven Software Wiki
Jump to navigationJump to search
Removing all content from page |
No edit summary |
||
| 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
?>