in reply to Re: Whats wrong with this code.
in thread Whats wrong with this code.
Here is the HTML code generated by the use of CGI.pm, which does not work:
<form method="post" action="secalert_display.cgi" enctype="application +/x-www-form-urlencoded" target="_top" name="new"> <input type="submit" name=".submit" value="Enter a new record for a Se +calert" /> <input type="hidden" name="MODE" value="new" /> </form>
And here is the HTML generated by the use of the prints statements that DOES work.
<form name='new' method='post' action='secalert_display.cgi' target='_ +top'> <input type='submit' value='Enter a new record for a Secalert'> <input type='hidden' name='MODE' value='new'> </form>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Whats wrong with this code.
by imp (Priest) on Feb 20, 2007 at 17:38 UTC | |
|
Re^3: Whats wrong with this code.
by eric256 (Parson) on Feb 20, 2007 at 17:35 UTC | |
|