in reply to Pre-Populate HTML form
-defaults=>['eenie','minie']),#!/usr/local/bin/perl use CGI qw(:standard); print header; print start_html('Lincoln Stein Rocks the Perlmonk Example'), h1('Perlmonk Example'), start_form, "What's the combination?",p, checkbox_group(-name=>'words', -values=>'eenie','meenie','minie','moe'],
p, "What's your favorite color? ", popup_menu(-name=>'color', -values=>'red','green','blue','chartreuse']), p, submit, end_form, hr; print end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Pre-Populate HTML form
by Aristotle (Chancellor) on Jan 22, 2003 at 22:18 UTC |