I've created some checkboxes in PHP which allow me to select multiple items. Does anyone know a way that I can keep track of the order in which the items were selected? Thanks!
You would have to do this client-side in Javascript... basically adding an onclick to each check box that appends/removes the checkbox reference from, say, a hidden text field. The hidden text field would be submitted as part of the form... and you could parse it server-side to get the order.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.