Re: [Boston.pm] cgi form question

2008-01-18 Thread Kenneth A Graves
On Fri, 2008-01-18 at 15:11 -0500, Mike Williams wrote: On Jan 17, 2008 3:56 PM, Xiong, Bob [EMAIL PROTECTED] wrote: Sure. Please see my code snippet below. use CGI ':standard'; generate_form(); do_work(); Generate_form both starts and ends the form. Do_work tries to add input

Re: [Boston.pm] cgi form question

2008-01-18 Thread Mike Williams
On Jan 17, 2008 3:56 PM, Xiong, Bob [EMAIL PROTECTED] wrote: Sure. Please see my code snippet below. use CGI ':standard'; generate_form(); do_work(); sub generate_form { print start_form; print ID# , textfield('id'); print submit('Action', 'OK'); print end_form; } sub