Variables and Expressions
<?php
    $foo = 1;
    $bar = "Testing";
    $xyz = 3.14;
    $foo = $foo + 1;
?>
Arrays
<?php
    $foo[1] = 1;  
    $foo[2] = 2;
    $bar[1][2] = 3;
?>
Functions
<?php
    phpinfo();
    foo();
    $len = strlen($foo);
?>
Control Structures
<?php
    while($foo) {
        ...
    }
?>
Output
<?php
    echo $foo;
    printf(".2f",$price);
?>