$input_string = "this is a test."; $pieces = explode(",", $input_string); echo "Names in List: \n"; foreach($pieces as $name) { echo trim($name) . "\n"; }?>