in reply to Re: Help... I know nothing about perl...
in thread Help... I know nothing about perl...
When you are using CGI in OO form,you should use CGI; and not use CGI qw(:standard);.
I recommend that you just import the functions in and use them
#!/usr/bin/perl use CGI qw(:standard); use strict; my $name = param('name'); print header(); if ($name) { print "Welcome " . $name }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Help... I know nothing about perl...
by Roninpc (Initiate) on May 01, 2001 at 21:59 UTC | |
by orkysoft (Friar) on May 02, 2001 at 02:24 UTC |