|
Posted by Beauregard T. Shagnasty on 07/30/07 17:00
Vince wrote:
> Give me some time to find out the contact information. They are group
> based over in Germany.
Ask if they have canned server-side scripts available to you.
> For the most part I just need to know how I can do this in html.
The answer is No. HTML doesn't *do* anything except display content.
You will need some kind of server-based script to generate an email.
Your HTML will be something similar to this, in its basic layout:
<form id="email" method="post" action="/scripts/sendmail.cgi">
<label>Comments:
<textarea name="comment" id='comment' rows="8" cols="55"></textarea>
</label>
<label>
<input type="submit" value=" Submit Form "
id="submit1" name="submit1">
</label>
</form>
...and upon clicking the button, or pressing Enter, the script will be
invoked to complete the job.
--
-bts
-Motorcycles defy gravity; cars just suck
Navigation:
[Reply to this message]
|