Here is the question: how do I retrieve the info that is submitted to me in
a contact form on my website? Via email of some other way?

I understand that this is a basic, and possibly a stupid question. I have
been teaching myself web design from some fantastic web standards books. All
of them tell me how to make a form correctly, but none tell how to retrieve
the submitted info via email or some other way. Can I simply have the form
info sent to my email address with the action=² ² part of the code?

I understand that this is more of a code question than a css question, but I
could really use the help.

Please, please help me.

Thank you.
Stacie

Here is the form:

<div id="content">
<h3>Contact me</h3>
<form id="contactinfo" method="post" action="">
<fieldset>
<p><label for="author">Name:</label>
    <input name="author" id="author" type="text" /></p>
<p><label for="email">Emal Address:</label>
    <input name="email" id="email" type="text" /></p>
<p><label for="url">Website: <em class="optional">optional</em></label>
    <input name="url" id="url" type="text" /></p>
<p><label for="url">Subject:</label>
    <input name="url" id="url" type="text" /></p>
<p><label for="text">Message:</label>
    <textarea name="text" id="text" cols="60" rows="10"></textarea></p>
<p><input type="submit" value="Send message"/></p>
</fieldset>
</form>
</div><!--end content-->


______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to