in reply to Re: Using Perl's Debugger on
in thread Using Perl's Debugger on

If one is using CGI.pm an easy way to save state from Form Handler A to Form Handler B is
  1. In Form Handler A save the query object to a reference to a filehandle, e.g. $q->save(\*Q_NEW_USER);
  2. 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