<?php $str = "Munich, Germany, Berlin, Germany, London, UK, Paris, France, Vienna, Austria, Milano, Italy, Rome, Italy"; $array = explode(",",$str); foreach($array as $k => $value){ if($k % 2){ $country_list[] = trim($value); }else{ $city_list[] = trim($value); } } print_r(join(",",$city_list)); print_r(PHP_EOL); print_r(join(",",$country_list));
You have javascript disabled. You will not be able to edit any code.