<?php $str["options"] = "Hello,Howdy,Hola"; $data = explode(",", $str["options"]); $newstr = 'My values are'. PHP_EOL; foreach($data as $key => $value){ $number = $key+1; $newstr .= "$number.". $value . PHP_EOL; } echo $newstr;
You have javascript disabled. You will not be able to edit any code.