I currently have a form with both a radio button:
CODE
echo <input type='radio' name='interest'
value='$type'>
value='$type'>
And a submit button:
CODE
<input type='submit' name='Products'
value='Select Category'>
value='Select Category'>
I do not want to use the radio and submit buttons, I would like all of the same things to happen when a person clicks on an image (instead of checking the radio button and pressing submit). So basically two values for one action...
So far I have tried this, but know I am way off, because this only contains the name of the old radio button and not the submit:
CODE
echo "<input type='image' border='0' name='interest'
value='$type' src='../system/13/uploads/$type'>
value='$type' src='../system/13/uploads/$type'>
Is there anyway to do this? I will be in debt to anyone who can help me.
