Hi
I need to pass variable $one and variable $two inside a checkbox to another page from a listing page where i can select many records
<input type="checkbox" name="sel[]" value="<?=$one ?>">
must be:
<input type="checkbox" name="sel[]" value="<?=$one and $two?>">
In the past i just concatenate those variables and add any special character (like: "?") to know i have to separate back on the receiving page on the moment i find the "?" character
Is there an easier way ?
Thank“s in advance for your help !