PDA

View Full Version : Linking forms?



fl4k
26 Jun 2008, 02:30 AM
mk so im trying to make an order form my my graphics site...and add in the <select></select> area where each service links to a new page or even adds a new box depending on what it is....

here is my coding:

<form enctype="text/plain" action="mailto:(personally removed)" method="post">
<fieldset> <legend align="left">Order</legend> <p> What is your order type?<br> <select name="product"> <option value="Graphics">Graphics <option value="Layouts">Layouts <option value="Coding">Coding <option value="advertising">Advertising </select>
</p> </fieldset>
<fieldset> <legend align="left">Name/Email</legend>
<p> <tr>
<td>Name:</td> <td><input type="text" name="Name" size="40"></td> </tr> </p>
<p> <tr> <td>Paypal Email:</td> <td><input type="text" name="email" size="40"></td> </tr> </p> </fieldset>
<fieldset> <legend align="left">Description</legend>
<p> Detailed description of your purchase (colors, size, wording etc.):<br> <textarea name="comments" rows="3" cols="30" wrap=""></textarea> </p> </fieldset>
<input type="submit" value="Place Order"> <input type="reset" value="Reset">

Can anyone help me with what im trying to do?