> I'd love to use an array, but I don't think you can pass an array value
from
> a form and have it work on the update script - e.g. input
> name="Resource[0]"...

Ah, but you can... You can use exactly what you just wrote and have
$_POST['Resource'][0] in your processing script. Loop through that array and
you're good to go. Or, you can name them as name="Resource[]" and let PHP
handle creating the keys (they'll start at zero, anyhow).

Enjoy...

---John Holmes...


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

Reply via email to