User:Mcaslava
From PlcWiki
(Difference between revisions)
m (→Links) |
m (→Links) |
||
Line 8: | Line 8: | ||
My [[Glossary]] | My [[Glossary]] | ||
+ | |||
+ | <syntaxhighlight lang="php"> | ||
+ | <?php | ||
+ | $v = "string"; // sample initialization | ||
+ | ?> | ||
+ | html text | ||
+ | <? | ||
+ | echo $v; // end of php code | ||
+ | ?> | ||
+ | </syntaxhighlight> |
Revision as of 13:56, 5 February 2012
Personal Information
Martin Čáslava (martin.caslava@clever.cz)
Links
My Glossary
<syntaxhighlight lang="php"> <?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?> </syntaxhighlight>