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

why not use the semi-colon!? i get the same output, and with
the perl -w switch no problem.

Replies are listed 'Best First'.
Re: Re: Re: cgi programming...
by poj (Abbot) on Jan 12, 2003 at 19:09 UTC
    You won't see it in the browser but check the source HTML and you will be missing the </body></html> tags.
    poj
      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