I thought if it is possible to get this done with PHP or JavaScript:
Let's say I have two checkboxes:
<li><input type="checkbox" checked="checked" name="Tuesday" value="111"/> Tueday</li>
<li><input type="checkbox" name="Wednesday" value="112"/> Wednesday</li>
I want to see the value of the checked="checked"
which is 111 after the page is loaded.
How can i achieve this? If this is possible in PHP and JavaScript, I would like to have both methods. Thank you!