Sandbox
From TeleFlow
(Difference between revisions)
(New page: ===Sandbox=== A place to test wiki entires <source lang="php"> <?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?> </source>) |
|||
Line 3: | Line 3: | ||
A place to test wiki entires | A place to test wiki entires | ||
- | < | + | <code> |
<?php | <?php | ||
$v = "string"; // sample initialization | $v = "string"; // sample initialization | ||
Line 11: | Line 11: | ||
echo $v; // end of php code | echo $v; // end of php code | ||
?> | ?> | ||
- | </ | + | </code> |
Revision as of 21:00, 16 March 2008
Sandbox
A place to test wiki entires
<?php
$v = "string"; // sample initialization
?> html text <?
echo $v; // end of php code
?>
