I have a simple html form which, as you can see below, has been pre-populated with information, for example, for purposes.

Currently, when you click the button, the form is saved in Google Docs, which work great.
However, I also want it to write / save the form output to a text file on the server on which the page will be hosted.
The format that I want it to be recorded / saved as shown below, each new line is a new representation of the form.
An example of the expected result:
3/18/2015 8:06:27 testname test4 test2 test3 test4 test5 test6 test7 test8 test9 test10
3/18/2015 8:07:07 testname1 test4 test4 test3 test4 test5 test6 test7 test8 test9 test10
3/18/2015 8:08:01 testname2 test2 test2 test3 test4 test5 test6 test7 test8 test9 test10
3/18/2015 8:09:41 testname3 test2 test5 test3 test4 test1 test6 test7 test8 test9 test10
The separator character must be an ASCII tab character
/ , , , , /.
, // , Google.
function breakRedirect() {
$('#container').replaceWith('<div id="complete">Completed</div>');
};
...
, , (, javascript/jquery , ), , PHP ? ...
function breakRedirect() {
var month = new Array();
month[0] = "01"; month[1] = "02"; month[2] = "03"; month[3] = "04"; month[4] = "05"; month[5] = "06"; month[6] = "07"; month[7] = "08"; month[8] = "09"; month[9] = "10"; month[10] = "11"; month[11] = "12";
var collection = new Date().getDate() + "/" + month[new Date().getMonth()] + "/" + new Date().getFullYear() + " "+ new Date().getHours() + ":" + new Date().getMinutes() + ":" + new Date().getSeconds();
var $inputs = $("input")
$inputs.each(function () {
var value = this.value;
if (value != "Submit Selections" && value != "Clear Selections") {
collection += "\t" + value
};
});
var $selects = $("select")
$selects.each(function () {
var value = this.value;
collection += "\t" + value
});
console.log(collection);
$('#container').replaceWith('<div id="complete">Completed</div>');
};
?