Figure 1 Sample PHP script "; // ((E)) echo "He lives in $location and has been playing with computers for over $experience years.
"; echo "Here are a few of the languages he has used so far in his career:
"; foreach ($languages as $language) { // ((F)) print "$language
"; // ((G)) } // ((H)) The following lines demonstrate the // debugging aids print_r() and var_dump() echo "

Print_r output
"; print_r($languages); echo "

Var_dump output
"; var_dump($languages); ?>