From: "Edward Peloke" <[EMAIL PROTECTED]>

> Is there an easy way to loop through the $_Post vars and create a table
with
> all the names and values?  I need a class that I can attach to any form to
> output the names and values then e-mail them.

foreach($_POST as $name => $value)
{ echo "$name: $value\n"; }

---John Holmes...

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

Reply via email to