0
How can i print all the Elements from associative Array in PHP using For Loop ??
Not from ForEach loop JUST for Loop ?
1 ответ
+ 1
The closest thing I could think of to try was to first collect the array's keys (using array_keys()) then use a for-loop to reference the value having the keys at hand. How are you doing this? can you show your code so far?