I initiallize an array with $array = array();
Then I want to add $variable to it as part of a loop
$array[] = $variable;
But this doesn't seem to work, I also tried doing "'$variable'" which also didn't work.
Anyone know how to add variables to a mult-dim. array?
Thanks