in reply to CGI form Not Showing Up.

You need to print() the return of start_form as it just returns a string of the form tag that it's built up e.g
print start_form( { -action => "action_dbi.cgi", -enctype => "application/x-www-form-urlencoded", -method => "post" } ); __output__ <form method="post" action="action_dbi.cgi" enctype="application/x-www +-form-urlencoded">

HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: CGI form Not Showing Up.
by mush4brains (Acolyte) on May 01, 2002 at 19:42 UTC
    Once you add a "print" in front of your start_form(), see if your form displays...

    If not, I'm having the same problem. See my note on "Perl CGI..."

    Note that I'm not using CGI.pm in my script, so it's pure Perl/print's...

    - Mush