FWIW, it's basically something like this:
loop through query results
use next available element from that array
process a request using this query result along with that array element's data
end loop
I have a (crazy?) idea of turning it into an enumerated array, and using a $counter variable in the main loop, so that I can simply(?) access $data[$counter % count($data)].
However, based on some further information I just got today, this whole process might not fly and require some major rethinking on my part, so at this point it may be more of a hypothetical question. :rolleyes: