I'm using several checkboxes to populate an array and would like to 'check' them automatically by using a url string. Is this possible? For instance, a user has several link choices:
link A gets clicked and automatically fills in checkbox A on the next page
link B gets clicked and automatically fills in checkbox B on the same following page
My form fields are like so:
<input type="checkbox" name="selected_group[]" value="2">Link A<br>
<input type="checkbox" name="selected_group[]" value="3">Link B<br>
Any thoughts on a URL string to fill these in?