in reply to Re: Re: Re: cgi programming...
in thread cgi programming...

ok that is correct.but because the next line is
$cgi->end_html; if it was print $cgi->end_html; everything should be fine (as is).
thanks

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: cgi programming...
by poj (Abbot) on Jan 12, 2003 at 19:28 UTC
    Yes, you got it. Re your other question just change
    my $name = param('name'); to this my $name = $cgi->param('name');
    poj