Hi all, How do I append an array of arrays to an array in php. If I have - array(0,2,2) or [0,2,2]
and I have - array(array(1,2,2),array(2,2,2),array(3,2,2)) or [[1,2,2] [2,2,2] [3,2,2]] How do I append the array of arrays to the array so that I have - array(array(0,2,2),array(1,2,2),array(2,2,2),array(3,2,2)) or [[0,2,2] [1,2,2] [2,2,2] [3,2,2]] I tried this but it doesn't work $result = $array . $arrays Any help would be appreciated. I am obviously doing something wrong!
