So I have some php code that is spitting out checkboxes for Avatar. However the person can only select one of the images in their gallery to be their avatar. However When they check one of the boxes I want to be able to disable all the others. I can't seem to figure this out. Tried many different things so I thought I would ask with specific code.
echo 'Avatar: <input type="checkbox" name="membersview[]" class="memberavatar" value="'.$galleryid.'" /><br />';
So what I want is if a user checks any checkbox that has a class of members avatar. I would like to disable the other checkboxes that have the class of membersavatar.
Some Sample HTML output so you can see how it is being renedered by the browser
<form action="/members/members_gallery.php" method="post" id="memberdetail">
<div style="width:150px; height:200px; float:left; margin:0; padding:0; border:0;">
<a href="../site/images/gallery/users/ninja@theringersclan.com/1390202957-20130816_193346.jpg" target="_blank">
<img src="../site/images/gallery/users/ninja@theringersclan.com/1390202957-20130816_193346.jpg" style="width:150px; height:150px; margin:0; border:0; padding:0;">
</a>
<br>Is Public: <input type="checkbox" name="galleryid[]" value="5">
<br>Members: <input type="checkbox" name="membersview[]" value="5" checked="checked">
<br>Avatar: <input type="checkbox" name="membersview[]" class="memberavatar" value="5">
<br>Delete: <input type="checkbox" name="deletepic[]" value="5">
<br>
</div>
<div style="width:150px; height:200px; float:left; margin:0; padding:0; border:0;">
<a href="../site/images/gallery/users/ninja@theringersclan.com/1390203939-240_screenshots_2014-01-19_00001.jpg" target="_blank">
<img src="../site/images/gallery/users/ninja@theringersclan.com/1390203939-240_screenshots_2014-01-19_00001.jpg" style="width:150px; height:150px; margin:0; border:0; padding:0;">
</a>
<br>Is Public: <input type="checkbox" name="galleryid[]" value="7" checked="checked">
<br>Members: <input type="checkbox" name="membersview[]" value="7" checked="checked">
<br>Avatar: <input type="checkbox" name="membersview[]" class="memberavatar" value="7">
<br>Delete: <input type="checkbox" name="deletepic[]" value="7"><br></div><div class="cl">
</div>
<br><br>
<input type="submit" name="galleryupdatepics" value="Update Pics" style="float:left">