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

You won't see it in the browser but check the source HTML and you will be missing the </body></html> tags.
poj

Replies are listed 'Best First'.
Re: Re: Re: Re: cgi programming...
by atnonis (Monk) on Jan 12, 2003 at 19:18 UTC
    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
      Yes, you got it. Re your other question just change
      my $name = param('name'); to this my $name = $cgi->param('name');
      poj