It sounds like you have most everything set up for your form. However, because JavaScript is a client side language, it does not have access to your filesystem. Meaning, you can't write to a file with JavaScript alone. To do this, you would need to have a server side language capture your form's submitted data and then write the file.
It sounds like you have most everything set up for your form. However, because JavaScript is a client side language, it does not have access to your filesystem. Meaning, you can't write to a file with JavaScript alone. To do this, you would need to have a server side language capture your form's submitted data and then write the file.