|
Posted by dtshedd on April 13, 2008, 1:18 pm
Please log in for more thread options
profuse apologies in advance, not trying to cross post, but believe I
may have posted in the wrong forum earlier (comp.perl.misc)
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&.submit=Submit+...
what does this mean?
appreciate the help
dts
|