Hi everyone,
I am wanting build an array of tracks and top 3 times on that track. I am not very familiar with arrays and could use some help.
can I build the array as
$times = $laptimes[track1][driver1-time1];
$times = $laptimes[track1][driver2-time2];
$times = $laptimes[track1][driver3-time3];
$times = $laptimes[track2][driver1-time1];
$times = $laptimes[track2][driver2-time2];
$times = $laptimes[track2][driver3-time3];
then how do I do some loops to first extract track1 and then list the driver-times
so I would like it to list as:
track1
driver1-time1
driver2-time2
driver3-time3
track2
driver1-time1
driver2-time2
driver3-time3
the thing is im using Vbulletin and need to do all my DB from one page and pass the value through. (im hoping I can pass the arrays through 😐