Hello I have a form that allows the user to check as many options as they like and then hit submit. Is there any way to have the input type 'checkbox' submit more than one value?
For example right now I have:
<input type="checkbox" value="testuser">
But I want something like:
<input type="checkbox" value="testuser" valuetwo="1">
Is there any way to achieve this second option? Thanks!
Since there is no way to submit to values, is there a way to submit them both in value one? For example:
<input type="checkbox" value="testuser,1">
And if so how would I separate the value into two?