in reply to Retrieving Form Data

There should be no problem when doing this, but an alternative would to check the availability of a form field. For example:

if(!$form) { &display_form(); }
else { &process_form(); }

Ralph.

Replies are listed 'Best First'.
Re: Re: Retrieving Form Data
by Monolith-0 (Beadle) on Jul 15, 2001 at 03:24 UTC
    So I wouldn't have to use the extra argument? That makes sense.