• 0

How do I make a simple text box in FP so that when


Question

Im trying to make a "order" page for a very simple catalog. I need to know how to set up a simple form that has

Item number:

Shipping:

Subtotal:

etc:

than a "comments box"

and finaly a submit button.

How exataly do I set it up so that when the button is pressed, all the info is sent to my email address, in the same layout as the web site.

please help with links to tutorials or anything, Im really stuck on this

Thanks :)

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

<form name="mailForm" method=POST action="mailto:EMAIL ADDRESS HERE"

enctype="text/plain" onSubmit="checkit()">

<textarea name="comments" cols=20 rows=7> </textarea>

<input type=SUBMIT value="Send It" name="SUBMIT">

<input type=RESET value="Clear It" name="RESET">

</font></p>

</form>

Link to comment
Share on other sites

  • 0

Hey BOb, thank for your reply.

But how do I put that text in? and where?

I copied it into a blank page into the html, and it showed up as just text, can you give me some simple instructions

THIS IS WHAT IM LOOKING AT IN FP [ <table>

<tr><td align="right"><em>Name</em></td><td><input type="TEXT" name="Name" value size="35"></td></tr>

<tr><td align="right"><em>Company</em></td><td><input type="TEXT" name="Company" value size="35"></td></tr>

<tr><td align="right"><em>Address</em></td><td><input type="TEXT" name="Address" value size="35"></td></tr>

<tr><td align="right"><em>Telephone</em></td><td><input type="TEXT" name="Telephone" value size="35"></td></tr>

<tr><td align="right"><em>E-mail</em></td><td><input type="TEXT" name="Email" value size="35"></td></tr>

</table>

    <p><input type="SUBMIT" value="Submit Feedback"> <input

    type="RESET" value="Reset Form"> </p>

</form>

thanks mate!

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.