I understand i could use the implode() function to create a string, but i have had trouble using it on a 3D array. Apparently
implode(" ",implode(" ",implode(" ",$array))) doesn't really work!!
Not sure where to go from here!
Code: Select all
$array = array
(
"0"=>array
(
"0"=>array (
"Date",
"ID",
"Family"
),
"1"=>array (
"Date",
"ID",
"Family"
)
),
"1"=>array
(
"0"=>array ( "Date",
"ID",
"Family"
),
"1"=>array (
"Date",
"ID",
"Family"
)
),
"2"=>array
(
"0"=>array (
"Date",
"ID",
"Family"
),
"1"=>array (
"Date",
"ID",
"Family"
)
)
);3 columns "Date" , "ID", "Family"