in PHP, how can i loop an array of array without know if is or not an array?
Better with an example:
Array ( [0] => Array (
You can use is_array to check if that element is an array, if it is, loop over it recursively.