PHP    up http://www.php.net
 
 


 Hello World   PHP3   Michael Neumann
<?php
   echo "Hello World\n";
?>
Prints "Hello World" onto the screen.


 Squares   PHP3   Michael Neumann
<?php
// gibt die Quadrate von 1-10 aus

for($i = 1; $i <= 10; ++$i)
{
   echo $i*$i;
   echo " ";
}
?>
Outputs the squares from 1 to 10.