On 7/4/07, pubert na <[EMAIL PROTECTED]> wrote:
Won't multiple simultaneous requests change the "our" variables unpredictably since they all have access to the symbol table?
No. Every child process is completely separate and they don't share anything. Each process only handles one request at a time. And you never modify this variable after the first time the code runs anyway. - Perrin