I may have to (DB that is), or a serialized throwaway file, provided no disconnect occurs.
Here's the deal: I have a web app whereby the entire query is stored in a CLI PHP (due to its enormous run time because it's that monstrous a query!!), however, recent requirement stipulated that this monstrous query be filtered according to form actions (like you select a state, a city, a date, etc. and click FILTER). I can't use $REQUEST because $REQUEST becomes completely different in CLI PHP (turns into $argv instead), so I have to preserve the values in $REQUEST somehow and I thought I could do so in $SESSION, but the CLI PHP keeps telling me $_SESSION is an empty array, when in fact it's not (this proving by doing print_r() before and after the CLI PHP and it's intact!)
Phil