<?php $input = 'Jrew Low, Bill Wilt, Law Naw, Ing Holp'; $chunks = explode(" ", $input); foreach($chunks as $index=>$name) echo ($index % 2 ? "Last" : "First") . " name: ".trim($name, ", ")."\n";
You have javascript disabled. You will not be able to edit any code.