Can anyone help me?
I have a loop containing the html below that produces several checkboxes called subspec[].
<input type='checkbox' name='subspec[]' value='$val' >
When the information is passed to my php page it is obviously delivered as an array.
Here is my problem. When the array is delivered it is delivered in alphabetical order e.g.
subspec[0]= Albert, subspec[1]= Bert subspec[2]= Catherine and so on no matter which order the choices were selected in.
The choices selected on this page will be transfered to column headings on the next page. I want the column headings to appear in the order in which they were selected. Is there any way of doing this ?
Thanks in advance.
Ryan