Mega Code Archive
Wrap these in a couple of functions and surround the joined array elements with parentheses
'German', 'France' => 'French', 'Spain' => 'Spanish');
print 'Countries: ';
print array_keys_string($countries_languages);
print '
Languages: ';
print array_values_string($countries_languages);
?>