<?
$the_array=array(
"Monday","","Tuesday","Wednesday","Thursday","Friday"," ","Saturday","Sunday"
);
$max=count($the_array);
for($i=0; $i < $max; $i++){
$nr=$i+1;
printf("$nr) ".$the_array[$i]."<br>
");
}
echo "<hr>";
$max=count($the_array);
for($i=0; $i < $max; $i++){
if($the_array[$i] == " " || $the_array[$i] == null){
array_splice($the_array,$i,1);
}
}
$max=count($the_array);
for($i=0; $i < $max; $i++){
$nr=$i+1;
printf("$nr) ".$the_array[$i]."<br>
");
}
?>