My webhost has just upgrade to PHP 4.1.2 (from 4 point something) and at the same time has changed the implementation from mod_php to PHP running as a cgi module.
I pass parameters from page to page using start_session() and session_register("param1","param2"). This used to work fine. However, now it just works on the first time through. The parameters seem to get passed just the same in the address bar of my browser, but the code is not responding to them and I'm left with the parameter contents from the first time through.
Do I need to use a different method now to pick the parameters up?