in reply to Help... I know nothing about perl...
#!/usr/bin/perl use CGI qw(:standard); use strict; my $cgi = CGI->new; print $cgi->header; if ($cgi->param("name") ne "") { print "Welcome " . $cgi->param("name" +) }
<form method=post action=yourscript.pl> <input type=text name=name> <input type=submit name=submit> </form>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Help... I know nothing about perl...
by Eureka_sg (Monk) on May 01, 2001 at 21:24 UTC | |
by Roninpc (Initiate) on May 01, 2001 at 21:59 UTC | |
by orkysoft (Friar) on May 02, 2001 at 02:24 UTC | |
|
Re: Help... I know nothing about perl...
by Roninpc (Initiate) on May 01, 2001 at 21:23 UTC | |
by TGI (Parson) on May 01, 2001 at 22:21 UTC |