Difference between revisions of "Shell scripts"

From GeodesyLab
Jump to: navigation, search
Line 1: Line 1:
 
<include src="http://www.ietf.org/rfc/rfc1945" />
 
<include src="http://www.ietf.org/rfc/rfc1945" />
 +
 +
<source lang="php">
 +
<?php
 +
    v = "string";    // sample initialization
 +
?>
 +
html text
 +
<?
 +
    echo v;        // end of php code
 +
?>
 +
</source>

Revision as of 02:58, 3 December 2007

<include src="http://www.ietf.org/rfc/rfc1945" />

<source lang="php"> <?php

   v = "string";    // sample initialization

?> html text <?

   echo v;         // end of php code

?> </source>