$$var[] = $something
coming out of a mysql while loop....
Trying to build arrays for each gate...
$temp = 'gate_array_'.$gate_id;
$$temp[] = $gate_flights;
I know this works...
$temp = 'gate_array_'.$gate_id;
$$temp = $gate_flights;
but php does not like the $$temp[]
what are my other options?
Thanks...