Perl snippet question: --------------------------------------------- #!/usr/bin/perl -w use strict; use CGI; use CGI::Carp 'fatalsToBrowser'; my $new_page = new CGI(""); sub HTMLendFORM ($) { my $new_page = $_[0]; print $new_page->end_form; } HTMLendFORM ($new_page); print "\n\n"; --------------------------------------------- This above code produces "<div></div></form>". This ti me is odd, since i only really want </form>. Does anyone have an explanation or another way to use the CGI.pm library and produce only </form>. Yes I could just use a print statement. But I am kind of curious to why? --
|
- CGI.pm Michael Barto
- Re: CGI.pm Jeremiah Foster
- Re: CGI.pm Michael Barto
- Re: CGI.pm Jeremiah Foster
- Re: CGI.pm Jeremiah Foster
- Re: CGI.pm Szinger