array(13) {
[0]=> string(15) "TEST1"
[1]=> string(12) "TEST2"
[2]=> string(12) "TEST3"
[3]=> string(12) "TEST4"
}
Output should look like this:
0 TEST1
1 TEST2
2 TEST3
...
I'm new to arrays so I'm searching for the cleanest way to do it. It worked with some counter variables but it was ugly as hell. Thanks for your time.
foreachloop.