I need php code for the following.
I have an array with arrays made from the parseCSV class that I need to output into a table WITHOUT any column where ALL the values in that column are NULL. The first row in the first array(0) will be used as key names.
array is saved as $csv->data
Array (
[0] => Array (
[Title] => title0
[number] =>
[date] => 1995-08-15
[Inventor(s)] => inventorname0
)
[1] => Array (
[Title] => title1
[number] =>
[date] =…
