I'm making a html browser based logger for use by multiple users at my workplace.
I would like to be able to output data from forms (on this locally stored webpage) to an excel spreadsheet (also stored locally). This is not a page that will be hosted on the internet, only on the shared drive at work.
Is there any easy way to make the code below (for example) output to specific cells in an excel spreadaheet? Ideally every time a new form is submitted it will appear in the row below the last output on the spreadsheet.
<!doctype html>
<html>
<head>
<title>Form</title>
<form>
First name:<br>
<input type="text" name="firstname">
<br>
Last name:<br>
<input type="text" name="lastname">
</form>
</head>
<body>
</body>
</html>
Thank you in advance for any responses!
Aucun commentaire:
Enregistrer un commentaire