Variables y Expresiones
<?php
 $foo 
1;
 
$bar "Probando";
 
$xyz 3.14;
 
$foo $foo 1;
?>
Arreglos
<?php
 $foo
[1] = 1;  
 
$foo[2] = 2;
 
$bar[1][2] = 3;
?>
Funciones
<?php
 phpinfo
();
 
foo();
 
$len strlen($foo);
?>
Estructuras de control
<?php
 
while($foo) {
  ...
 }
?>
Producción de resultados
<?php
 
echo $foo;
 
printf(".2f",$price);
?>