Difference between revisions of "User talk:Ljdursi"

From oldwiki.scinet.utoronto.ca
Jump to navigation Jump to search
(Created page with '<syntaxhighlight lang="php"> <?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?> </syntaxhighlight>')
 
Line 1: Line 1:
<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>

Revision as of 10:31, 8 June 2009

<syntaxhighlight lang="php"> <?php

  $v = "string";    // sample initialization

?> html text <?

  echo $v;         // end of php code

?> </syntaxhighlight>