<?
$roofarray = array($roofvar1, $roofvar2, $roofvar3, $roofvar4,$roofvar5,$roofvar6,
$roofvar7,$roofvar8,$roofvar9,$roofvar10,$roofvar11,$roofvar12,$roofvar13,$roofvar14,$roofvar15,$roofvar16,);
function pc_array_to_comma_string($roofarray) {
switch (count($roofarray)) {
case 0:
return'';
case 1:
return reset($roofarray);
case 2:
return join(' and ' , $roofarray);
default:
$last = array_pop($roofarray);
return join(', ', $roofarray) . ", and $last";
}
}
$thisroof=pc_array_to_comma_string($roofarray);
echo $thisroof;
?>
This is showing
, , , , , , Metal , , , , , , , , , and
Not cool....
I will attempt the 'push'.