Bureaucrats, Moderators (CommentStreams), Interface administrators, Push subscription managers, Suppressors, Administrators
4,120
edits
Line 499: | Line 499: | ||
Wikitext: | Wikitext: | ||
<pre><nowiki> | <pre><nowiki> | ||
<syntaxhighlight lang="php"> | <syntaxhighlight lang="php"> | ||
<?php | <?php | ||
$v = "string"; // sample initialization | $v = "string"; // sample initialization | ||
?> | ?> | ||
html text | html text | ||
<? | <? | ||
echo $v; // end of php code | echo $v; // end of php code | ||
?> | ?> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</nowiki></pre> | </nowiki></pre> | ||
Saved wikitext: | Saved wikitext: | ||
<syntaxhighlight lang="php"> | <syntaxhighlight lang="php"> | ||
<?php | <?php | ||
$v = "string"; // sample initialization | $v = "string"; // sample initialization | ||
?> | ?> | ||
html text | html text | ||
<? | <? | ||
echo $v; // end of php code | echo $v; // end of php code | ||
?> | ?> | ||
</syntaxhighlight> | </syntaxhighlight> | ||