Hi,
If you put the check boxes to inside a form they send the check box name and their values. The redirected page contains the checkbox name=value as a global variable.
You can check the before-selected check box like this:
<input type="checkbox" name="mycheck" value="ON" <?php echo $mycheck ? 'checked' : '')?>>Text
The submit button also send their name and values so you can do the following:
if( isset($submit) ) {
if($mycheck1)
image showing for the first checkbox
endif
if($mycheck2)
image showing for the second checkbox
endif
.
.
.
and so on
}
Cheers.