On Mon, 31 May 2004 10:50:52 -0400 [EMAIL PROTECTED] (Bob Lockie) wrote:

> I tried this HTML:
> <input name="deleteID" value="1" type="checkbox">
> <input name="deleteID" value="2" type="checkbox">
> 
> $_REQUEST['deleteID'] === the last box checked.
> so I did a google search and changed my HTML to:
> 
> <input name="deleteID[]" value="1" type="checkbox">
> <input name="deleteID[]" value="2" type="checkbox">
> 
> Now the code:
> for ($i = 0; $i < count($_REQUEST['deleteID']); $i++){
>      echo "deleting '" . $value . "'";
> }
> has the right count but how do I get the values out?


echo "deleting '" . $_REQUEST['deleteID'][$i] . "'";



regards,

thomas

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to