I have 5 checkboxes, each has its own value.
If I submit them normally, I get a $_GET request like
http://siteurl.com/?&checkbox1=a&checkbox2=b&checkbox3=c....
It looks ugly, so I was thinking I could send a hidden input instead, like:
http://site.url.com/?checkeddata=a,b,c...
So how could I pick-up data from the checkboxes and store it in the hidden field?