I have a form for a website where people can make orders. I have a form with the correct inputs and a submit button. The thing is, i don't really know what ways there are for me to get that info that the user has typed in. Should it create a txt file or should the info be sent to me via email? In that case how? I haven't used php at all and would like to avoid it for now if possible...
This is the form
HTML
<form id="TheForm"> <div id="Row"> <input type="text" id="Name" placeholder="*Förnamn" required> <input type="text" id="Surname" placeholder="*Efternamn" required> </div> <div id="Row"> <input type="email" id="FirstEmail" placeholder="*e-postadress" autocomplete="on" required> <input type="email" id="SecondEmail" placeholder="*Verifiera e-postadress" autocomplete="off" required> </div> <div id="Row"> <input type="text" id="Town" placeholder="*Ort" required> </div> <div id="Row"> <input type="text" id="Address" placeholder="*Adress" required> </div> <div id="Row"> <input type="text" id="PostCode" placeholder="*Postnummer" required> </div> <div id="Row"> <input type="text" id="MobileNumber" placeholder="*Mobilnummer" required> <input type="text" id="TelephoneNumber" placeholder="Telefonnummer"> </div> <textarea id="Comment" placeholder="Förslag på hur vi skulle kunna förbättra oss!"></textarea> <input type="submit" id="Submit" value="Skicka"> </form> ps. The placeholders are in swedish so don't worry about that ;)