Utilisateur:Admin : Différence entre versions

De Wiki Makilab
Aller à : navigation, rechercher
Ligne 1 : Ligne 1 :
 
Tests :
 
Tests :
  
<source lang="php">
+
<syntaxhighlight lang="php">
 
<?php
 
<?php
 
     v = "string";    // sample initialization
 
     v = "string";    // sample initialization
Ligne 9 : Ligne 9 :
 
     echo v;        // end of php code
 
     echo v;        // end of php code
 
?>
 
?>
</source>
+
</syntaxhighlight>

Version du 2 juillet 2016 à 16:43

Tests :

<?php
    v = "string";    // sample initialization
?>
html text
<?php
    echo v;         // end of php code
?>