I have this php function in which I need to use an array inside an array, but I need a loop in one of them. It looks like this:
$number = 4;
data = array(
3 => array("test1","'test2","test3 and so on") //here is where i want the loop
17 => "hello world"
);
However I would like the array to...