I am setting up my menu and want to use drop down options for customers to select items and place email orders.
The following is what I have done so far but when I send the email it goes no where. Just want you to know I have no clue about html coding, I am learning because I would like to use this on my website.
<form>
<form method="post" action="mailto:myemail@gmail.com">
Name:<br>
<input type="text" name="name"><br> E-mail:
<br>
<input type="text" name="email"><br>
<table>
<tr>
<td><input type="hidden" name="on0" value="Fries">Fries</td>
</tr>
<tr>
<td>
<select name="os0">
<option value=>Small
<tr>
<td><input type="hidden" name="on0" value="Flavors">Flavors</td>
</tr>
<tr>
<td>
<select name="os0">
<option value=>Garlic Parmesan
<input type="submit" value="Send Email" />
<input type="reset" value="Reset">
</form>
I would like to receive via email orders from customers that reflect the options above. This is just one item but if I can get it to work I will applied the html code to all the items on my menu.