input type="image" not working

wxdqz

New Member
Hi all,

Having a bit of difficulty. I'm trying to make a grid of images inside of a form tag, so that when you click a particular image, the page refreshes with the image selected blown up from thumbnail to normal proportions on a different part of the screen. The tag for any given image in the form is:

<input type="image" src=http://www.webdeveloper.com/forum/archive/index.php/"<%=results[index]%>" name="choice" width="50" height="50>

"results", in this case, is a Java String array, and the above call outputs a URL to the src tag. This code works like a champ for instantiating the images onto the document, but the clicking portion works for some machines and not others.

When outputting the value of "choice"(on this machine), I'm getting nothing. It's as if the variable is being completely ignored by the submission.

Any ideas? Is there an easier way to do what I'm trying to do?

Thanks in advance,
AT
 
Back
Top