Hey guys/gals
Little question. I'm trying to pass id's from check boxes from a previous page. i.e http://www.myserver.com/list.php?id=101&id=102 ect.. the thing is how do I A. put those ids into a array so i can get them later. or B process one at a time? little help please?
Best Regards, Zak Thompson zt@ntidesign.com Nexpoint Technologies, Inc.
This is php, not asp, right?
Name your check boxes with [] at the end such as <input type="checkbox" name="id[]" value="101"> <input type="checkbox" name="id[]" value="102">
And php will give you an array $id with all checked boxes in it as values.