<?php $_GET = [ "rentalPropertyAddress"=>["111 tree st","112 tree st","122 tree st"], "gasInitialized"=>["on","on","off"], "waterInitialized"=>["off","on","on"], "electricInitialized"=>["on","on","off"], "inspectionDate"=>["","",""], "rentalDate"=>["","",""], "vacantInitialized"=>["no","no","yes"] ]; $retval = []; foreach ($_GET as $key => $item) { $i=0; foreach($item as $k=>$v){ $retval[$i][] = $v; $i++; } } echo "<pre>"; print_r($retval); echo "</pre>";
You have javascript disabled. You will not be able to edit any code.