Building a session query from multiple queries of same name
I have a SQL query that runs with the name="getcamp" multiple times within a page, then uses a template to display results.
The criteria is different on each run, but the data retrieved is exactly the same.
On another page I need all of the data, so I can loop over it as if it was one query. The idea is to pass the query to the other page in a name="session.getcamp" , so that the data from the query is stored in a session.
The issue I have is that there are the 5 queries with the same name in the first page. Could anybody tell me how I would merge each one into a session query that would have the one name session.getcamp but contain the results of all 5 queries
Thanks
Mark
