Programming Experience Review

Please tell us your name:
And your current job title:
Next select the programming languages that you use:
Use the Ctrl key to select multiples
Input Summary"; echo "

You told us that your name is ", $_GET["name"], // (D) ", that you are a ", $_GET["jobTitle"], " and that you program in some $languagesUsed different languages

Currently you use:

"; $languageList = $_GET['languages']; // (E) foreach ($languageList as $language) { // (F) if ( $language <> "Other" ) { echo " - $language
"; } else { echo " - And other language(s)"; } } } ?>