in reply to Send HTML to the server

Maybe something like this, using an email address:

The form element

<form_action="cgi-bin/upload.cgi" method="post" enctype="multipart/for +m-data">
The form field
<p>Your email address: <input type="text" name="email_address" /></p>
The submit button
<p><input type="submit" name="Submit" value="Submit Form" /></p>

Replies are listed 'Best First'.
Re^2: Send HTML to the server
by muba (Priest) on Sep 11, 2011 at 23:37 UTC

    But how does that send html as-is to the server?