for example, if you have a form and want to use it to send an email, the form would look something like this:
<form name="mailForm" action="process.php" method="post">
<textarea name="message" value=""></textarea>
<input type="submit" value="Submit" />
</form>
this then sends the data from...