If one is using CGI.pm an easy way to save state from Form Handler A to Form Handler B is
- In Form Handler A save the query object to a reference to a filehandle, e.g. $q->save(\*Q_NEW_USER);
- In Form Handler B retrieve the query object, e.g., $q_new_user = new CGI (\*Q_NEW_USER);
Edit 2001-04-18 by tye to close list