--- Charlie Fiskeaux II <[EMAIL PROTECTED]> wrote: > I think the hidden fields idea is the best one; I finally found a > solution that uses each() and list() to travel the $_POST array, > and I think it will work nicely.
You might strongly consider using foreach() instead for reasons of performance (1000% or more faster): http://www.blueshoes.org/en/developer/php_bench/ You could simply: foreach ($_POST as $name => $value) { ... } Hope that helps. Chris ===== Chris Shiflett - http://shiflett.org/ PHP Security - O'Reilly Coming mid-2004 HTTP Developer's Handbook - Sams http://httphandbook.org/ PHP Community Site http://phpcommunity.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php