Re: Using Fly

[email protected] Mon, 6 Sep 1999 23:20:20 +0100
Newsgroups perl.riscos
Message-ID <[email protected]>
On 6 Sep 99, at 22:57, Postmaster wrote:
> You are using a newer version of CGI.pm. This has moved to a more
> object oriented approach, i.e. you create a CGI object and access the
> parameters through that:
> 
> my $cgi = new CGI;
> my $favourite = $cgi->param('flavour');
> 
> However, you can still use the non-object oriented version by doing:
> 
> use CGI qw/:standard/;
> 
> my $favourite = param('flavour');
 
> Dave.

Oops.... that's what I meant to say... hope you will forgive the 
ineptitude...

:)

Ben