Is it possible to pass an group of input boxes of the same name, then get the values of all the checked boxes or filled out textboxes? How do I get ALL the IDs passed. Right now it only passes the last ID. Do I really have to give them all unique names?
For example... <html> <head> </head> <body> <form action="testform.php" method="post"> <input type="checkbox" value="0" name="DeleteIDs"></input> Jon Smith<br> <input type="checkbox" value="1" name="DeleteIDs"></input> David Callow<br> <input type="checkbox" value="2" name="DeleteIDs"></input> Peter Parker<br> . . . <input type="submit" value="Delete Users"> </form> </body> </html> This list of DeleteIDs will be build dynamically. I want the user to be able to check the boxes they want to delete and pull the IDs on the posted page. How do I get ALL the IDs passed. Right now it only passes the last ID. Thanks, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

