0
Why wont this Array run
I need help with this multidimensional array. <?php $myarr = array(); for ($row =0; $row < 2; $row++){ for($col = 0; $col < 16; $col++){ echo $myarr[$row][$col]; } }
7 Réponses
+ 2
Aiden Brody if you are satisfied with the correct answer here you should mark it as best not your own "thank you"🤔
ATB👍
+ 1
Thank you
0
you dont have any elements in array
0
Yes I want the loops to put the elements in the array is there a way to do it
0
yes
0
Thank you can you tell me how to do it