On the contrary, there are ways you can finagle this into POST. One thing I've learned in my tiny dabble into more-interesting-than-html webpages, is that you can use Javascript to do un-formy forms. Here's a concept snippet of what your html could look like:
<form name="image1" id="image1" method="post" action="image_gen.pl">
<input name="button1" type="button" style="HEIGHT: 28px; WIDTH: 120px"
+
value="View Image 1" LANGUAGE="javascript" onclick="return button1
+_onclick()">
<input type="hidden" name="image_info" value=" $perl ">
</form>
..where '$perl' is your info for that first image, retrieved from your post'ed form via whatever method you love best. The trick to making it work without real data to enter and turning that generic button into a submit button is in your headers javascript section:
function button1_onclick(){
window.document.image1.submit();
}
Now I'm completely lacking any real javascript knowledge, and I've done scant amounts of web programming, but that's the
$3.50 I have to offer your Loch Ness Monster, as unperl as it is.
Hope that helps,
-=rev=-
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.