Difference between revisions of "Hello World in C"

From eLinux.org
Jump to: navigation, search
(Created page with '<syntaxhighlight lang="php"> <?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?> </syntaxhighlight>')
 
Line 2: Line 2:
 
<?php
 
<?php
 
     $v = "string";    // sample initialization
 
     $v = "string";    // sample initialization
?>
 
html text
 
<?
 
    echo $v;        // end of php code
 
 
?>
 
?>
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 12:28, 26 March 2010

<?php
    $v = "string";    // sample initialization
?>