Hi,
I have a series of rows in a table like the ones shown below.
The radio buttons are allowing the user to make multiple selections rather than just one.
Any idea why this is the case? I want radio buttons so that the user can select just one.
The idea behind the use of both radios and checkboxes is to allow the user to select just one image as a Thumbnail (the radios) to be stored in a table in a local MySql database and many images to be stored in another table in the same DB (checkboxes). (Am using Perl CGI).
Thanks for your help,
Andy
<table>
<tr>
<td style="text-align:center">
<input type="radio" name="MITM_NEWslctItmThmbn56" value="selected" >
</td>
<td style="text-align:center">
<input type="checkbox" name="MITM_NEWslctItmImg56" value="selected" >
</td>
<td align=center title="http://lh4.ggpht.com/_BfSHtcWNuCI/SxGxKEWu4NI/AAAAAAAABAI/fZOZK0z794U/FirstShoot2009-08-06.JPG">
<IMG name="img56"
style="cursor

ointer"
src="http://lh4.ggpht.com/_BfSHtcWNuCI/SxGxKEWu4NI/AAAAAAAABAI/fZOZK0z794U/s128/FirstShoot2009-08-06.JPG"
width="37.5" height="50"
alt="If image does not appear, try clicking this space"
title=""
onClick="window.open('http://lh4.ggpht.com/_BfSHtcWNuCI/SxGxKEWu4NI/AAAAAAAABAI/fZOZK0z794U/FirstShoot2009-08-06.JPG','newWin', 'height=1600, width=1200, top=0, left=0');">
</td>
<td style="text-align:center">
<textarea rows="1" cols="25">test update</textarea><br>
<input style="text-align:left" type="text" size="27" name="MITM_NEWalbmImgCptn56" value="This is a new caption with spaces">
</td>
<td> <!-- This hidden preserves the info about the image for use in screen refresh and filling in the selected list -->
<!-- See subroutine xferNewItemSlctdItmImgsToArray for record layout -->
<input type="hidden" name="MITM_NEWimgInfo56"
value="3#C#test update#C#http://lh4.ggpht.com/_BfSHtcWNuCI/SxGxKEWu4NI/AAAAAAAABAI/fZOZK0z794U/FirstShoot2009-08-06.JPG#C#1200#C#1600#C#http://lh4.ggpht.com/_BfSHtcWNuCI/SxGxKEWu4NI/AAAAAAAABAI/fZOZK0z794U/s128/FirstShoot2009-08-06.JPG#C#37.5#C#50">
</td>
</tr>
... MANY ROWS LIKE THE ABOVE FOLLOWED BY
<tr>
<td> <!-- This hidden preserves the number of images that have been displayed -->
<!-- See subroutine xferNewItemSlctdItmImgsToArray -->
<input type="hidden" name="MITM_NEWnrOfAlbmImgs" value="58">
</td>
</tr>
</table>