Below is my html appointment form i created, it's a simple form that obtains a day, a time, and a name. I'd just like to know how to write this information to another file for later use, or also possibly send the information to an email address. I can't seem to figure it out. I'm still relatively new with web development and have tried many different methods to no avail. any help at all would be appreciated.
<div class="col-md-5 col-md-offset-1">
<div id="tab1">
<div class="submit-form">
<h4>
Setup an appointment
</h4>
<form id="form-submit" action="" method="get">
<div class="row">
<div class="col-md-6">
<fieldset>
<label for="Date">Date:</label> <select required=""
name='from' onchange='this.form.()'>
<option value="">
Select a day...
</option>
<option value="Monday">
Monday
</option>
<option value="Tuesday">
Tuesday
</option>
<option value="Wednesday">
Wednesday
</option>
<option value="Thursday">
Thursday
</option>
<option value="Friday">
Friday
</option>
</select>
</fieldset>
</div>
<div class="col-md-6">
<fieldset>
<label for="Time">Time:</label> <select required=""
name='to' onchange='this.form.()'>
<option value="">
Select a Time...
</option>
<option value="9:15 A.M">
9:15 AM
</option>
<option value="10:15 A.M">
10:15 AM
</option>
<option value="11:15 A.M">
11:15 AM
</option>
<option value="12:45 P.M">
12:45 PM
</option>
<option value="1:45 P.M">
1:15 PM
</option>
<option value="2:45 P.M">
2:15 PM
</option>
<option value="3:15 P.M">
3:15 PM
</option>
<option value="4:15 P.M">
4:15 PM
</option>
</select>
</fieldset>
<div class="nLabel">
<fieldset>
<label style="margin-left:-50px" for=
"Name">Name:</label>
<div class="nBox">
<fieldset>
<input style="margin-left:-110px" type=
"text" />
<div class="Btn">
<fieldset>
<button type="submit" style=
"margin-left:-69px" id="sBtn" class=
"button" value="click">OK</button>
</fieldset>
</div>
</fieldset>
</div>
</fieldset>
</div>
</div>
</div>
</form>
</div>
</div>
</div>