CGI.PM and print table

trying to replace this

print "<table>\n";
print "<tr><td><input type=\"submit\"></td><td><input type=\"reset\"></
td></tr>\n";
print "</table>\n";

with this

print table(
TR([
td([submit(),reset()])
])
);

seems to work but then a new name/value pair for "submit" shows up in
the browser address bar

original query string

http://192.168.1.1/rocket.pl?page=1&keywords_string=3

new query string

http://192.168.1.1/rocket.pl?page=1&keywords_string=3&.submi t=Submit+Query

what does this mean?

appreciate the help

dts
dtshedd [ So, 13 April 2008 18:13 ] [ ID #1941675 ]

Re: CGI.PM and print table

dtshedd [at] yahoo.com wrote in
news:4f43ff50-5243-4389-9d1a-b93372017ec9
[at] m36g2000hse.googlegroups.co
m:

> trying to replace this
>
> print "<table>\n";
> print "<tr><td><input type=\"submit\"></td><td><input
> type=\"reset\"></ td></tr>\n";
> print "</table>\n";
>
> with this
>
> print table(
> TR([
> td([submit(),reset()])
>])
> );
>
> seems to work but then a new name/value pair for "submit" shows up
> in the browser address bar

It seems to me that there are gaps in your knowledge of HTML and CGI
and you might want to learn more about those topics before going any
further.

The HTML code you show above does not specify names for the input
elements. On the other hand, CGI.pm does specify names for the input
elements. Therefore, when the CGI.pm generated HTML code is used,
form submission causes the name-value pair for the submit button
that was used to be submitted along with the rest of the data.

There is a good reason for this. For example:

<input type="submit" name="action" value="Copy">
<input type="submit" name="action" value="Move">
<input type="submit" name="action" value="Delete">

Then, your script can take actions based on the value of the action
parameter.

> original query string
>
> http://192.168.1.1/rocket.pl?page=1&keywords_string=3
>
> new query string
>
> http://192.168.1.1/rocket.pl?page=1&keywords_string=3
> &.submit=Submit+Query
>
> what does this mean?

Could you explain why you care?

Sinan

--
A. Sinan Unur <1usa [at] llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)

comp.lang.perl.misc guidelines on the WWW:
http://www.rehabitation.com/clpmisc/
1usa [ So, 13 April 2008 21:15 ] [ ID #1941681 ]
Perl » comp.lang.perl.misc » CGI.PM and print table

Vorheriges Thema: FAQ 9.17 How do I check a valid mail address?
Nächstes Thema: FAQ 9.14 How do I make sure users can't enter values into a form that cause my CGI script to do bad