in reply to Game.
You should be able to use that code, with slight modification, to create filds that the user will never see. You can use then useprint $query->start_form(-method=>$method,-action=>$action,-enctype=>$ +encoding); print $query->hidden(-name=>'hidden_name'); print $query->endform;
to get the value back from the document after the user clicks on a submit button. You can get more info on this stuff in the perldoc.$value = $query->param('hidden_name');
|
|---|