in reply to Very little CGI
I recommend that you check out Ovid's Web Programming with Perl in the meantime. :)#!/usr/bin/perl -T use strict; use warnings; use CGI qw(:standard); my %label = ( mdk => 'Mandrake', debian => 'Debian', slack => 'Slackware', red => 'Red Hat!!', ); print header,start_html,start_form, "Quale e' il tuo nome e cognome?", textfield('nome'), br(), 'Come hai conosciuto linux?', textarea('conosciuto'), br(), 'Quale distro usi?', br(), popup_menu( -name => 'distro', -values => [keys %label], -labels => \%label, ), br(), submit(-name=>'Spedisci',-value=>'Invia'), end_form, ; if (param('Spedisci')) { print pre( 'nome = ', param('nome'), "\n", 'conosciuto = ', param('conosciuto'), "\n", 'distro = ', param('distro'), "\n", ); } print end_html;
jeffa
L-LL-L--L-LL-L--L-LL-L-- -R--R-RR-R--R-RR-R--R-RR B--B--B--B--B--B--B--B-- H---H---H---H---H---H--- (the triplet paradiddle with high-hat)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (jeffa) Re: Very little CGI
by nathanvit (Beadle) on May 10, 2003 at 16:50 UTC | |
by jeffa (Bishop) on May 10, 2003 at 16:57 UTC | |
by valdez (Monsignor) on May 10, 2003 at 17:31 UTC |