One method to "submit" results from a from, is to email the results to your address. This page illustrates the basic commands needed to accomplish this task, it requires setting certain attributes in the opening <form> tag.

To get the data from a form sent to a certain email address, your opening form tag should contain the following attributes:

<form method="post" enctype="text/plain"
action=" mailto:yourEmail@central.edu" id="myForm" name="myForm" />

When doing so, you'll want to name (or id) your form objects with especially descriptive names, since the email message sent uses the basic syntax: formObjectName=value. The example below also includes checkboxes (inserted via the Insert-> Form-> Checkbox menu).

Enter your name:  

Which meals would you like in your meal plan?
Breakfast   Lunch   Supper

Please enter your class standing:

  

Here is a typical email message from this form:
myNameIs=Tom Linton
giveMeBreakfast=ON
giveMeLunch=ON
myClassIs=faculty
B1=Send Information