Re: [PHP] sending form values

2004-03-25 Thread John W. Holmes
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:

RE: [PHP] sending form values

2004-03-25 Thread Chris W. Parker
Edward Peloke on Thursday, March 25, 2004 12:50 PM said: > 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. yes.

RE: [PHP] sending form values in http header?

2002-02-21 Thread Johnson, Kirk
In the method line, the URL being POST'd to is form2.php, not form.php. Is that the correct file name, or should that be form.php? Kirk > -Original Message- > From: marcbey [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 21, 2002 5:47 AM > To: [EMAIL PROTECTED] > Subject: [PHP] sen

Re: [PHP] sending form values in http header?

2002-02-21 Thread Simon Willison
I have no idea why your code isn't working, but if you are interested there is a class called Snoopy which can do exactly qhat you are attempting (posting values to a form, as well as grabbing pages from URLs and other neat tricks): http://snoopy.sourceforge.net/ marcbey wrote: >is it possib