CGI.PM and print table

CGI.PM and print table

am 13.04.2008 18:13:11 von dtshedd

trying to replace this

print "

\n";
print "\n";
print "
td>
\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

Re: CGI.PM and print table

am 13.04.2008 21:15:33 von 1usa

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

> trying to replace this
>
> print "

\n";
> print "\n";
> print "
> type=\"reset\">
\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:





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@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/