I would like to group several (n) tables into a single large table. Exemple :
$tab1 = array("test0","test1");
$tab2 = array("test2","test3");
$tab3 = array("tes..","....");
But for example with 10 tables. Instead of writing
$result = array_merge($tab1, $tab2, $tab3 --> $tab10);
The algorithm should do this on its own, but I admit I'm lost. I thought I would do it recursively.
If anyone would have how to do it, thanks