A really php newbie here, sorry if the question is too simple.
I’m following an online course and I’ve just got stuck with the arrays chapter.
They show the following representation of an array:
$years
: array =
0: array =
0: string = 6465
1: string = 1964-1965
1: array =
0: string = 6566
1: string = 1965-1966
2: array =
0: string = 6667
1: string = 1966-1967
3: array =
0: string = 6768
1: string = 1967-1968
And I don’t know how to translate it into a proper PHP array.
Could you please show me how the array would be?
Thanks a lot
etc