Message-ID: <3D7149A9.8090007@umkc.edu> Date: Sat, 31 Aug 2002 17:41:48 -0500 From: Jason Clinton <clintonj@umkc.edu> Subject: Re: Mailing the output of an HTML form
Jonathan Hutchins wrote:
>I always thought that if you wanted the output of a form sent as an email,
>you used ACTION="mailto:user@host.org", just like a mailto url. However, I
>see a number of references to using a perl or CGI script to do this. Why?
>
>
>
It's not part of the user agent specification so you never know what
you're going to get if you relly on the browser.
On the other hand, the POST ACTION is standardized so if you pass it to
a perl, php, or python script your sure to get the same format from all
browsers. Also, consider implementing a MYSQL database to gather your
responses instead of emailing them. Then can perform things like make
merges and such using the MYSQL ODBC driver. (If so posessed.)