<?$a[0] = 1;$a[1] = "foo";$a[] = 1.57;?>
<?$catch_it['cat'] = "mouse";$catch_it['dog'] = "cat";?>
<html> <body> <?php $F[0] = 0; $F[1] = 1; // Fill in the entries of the array: for ( $i = 2; $i < $N; $i++ ) $F[$i] = $F[$i-1] + $F[$i-2]; // Print out the array: for ( $i = 0; $i < $N; $i++ ) print( " $F[$i]" ); ?> </body> </html>