iam creating a cgi page of offer calculator and the code which i have rite now is ...
#!/usr/bin/perl -w
use CGI qwall);
print header;
##creating html page
print start_html('Offer Calculator'),
h1(' Offer Calculator'),
start_form,
"Work Station Product: ",
popup_menu(-name=>'WrokStation_products',
-values=>[' Client Security',' For workstation',' Linux Client Security']),
p,
"Suites Product: ",
popup_menu(-name=>'Suites_products',
-values=>[' Client Security',' For workstation',' Linux Client Security']),
p,
"Server products Product: ",
popup_menu(-name=>'Server_products',
-values=>[' for Microsoft Exchange','Internet Gatekeeper','Internet Gatekeeper for Linux',' for Windows Servers',' Linux Server Security']),
p,
"Total Number of Computers: ",textfield('number_of_computers'),
p,
submit,
end_form,
hr;
print end_html;
Now i would like to know how can i put dropdown box and labels in a table.Please give some examples thanks
#!/usr/bin/perl -w
use CGI qwall);
print header;
##creating html page
print start_html('Offer Calculator'),
h1(' Offer Calculator'),
start_form,
"Work Station Product: ",
popup_menu(-name=>'WrokStation_products',
-values=>[' Client Security',' For workstation',' Linux Client Security']),
p,
"Suites Product: ",
popup_menu(-name=>'Suites_products',
-values=>[' Client Security',' For workstation',' Linux Client Security']),
p,
"Server products Product: ",
popup_menu(-name=>'Server_products',
-values=>[' for Microsoft Exchange','Internet Gatekeeper','Internet Gatekeeper for Linux',' for Windows Servers',' Linux Server Security']),
p,
"Total Number of Computers: ",textfield('number_of_computers'),
p,
submit,
end_form,
hr;
print end_html;
Now i would like to know how can i put dropdown box and labels in a table.Please give some examples thanks