我找到了the following Javascript。 它会将表单数据发布到特定的公开Google电子表格。
function postToGoogle() {
var field1 = $("input[type='radio'][name='qs1']:checked").val();
var field2 = $("input[type='radio'][name='qs2']:checked").val();
var field3 = $('#feed').val();
$.ajax({
url: "https://docs.google.com/forms/d/FORM_KEY/formResponse",
data: {
"entry.1023121230": field3,
"entry.1230072460": field1,
"entry.2113237615": field2
},
type: "POST",
dataType: "xml",
statusCode: {
0: function() {
//Success message
},
200: function() {
//Success Message
}
}
});
我想在PHP中也这样做,因为可以在浏览器中禁用Javascript。但我在网上找到的所有PHP脚本都使用ZEND库并要求输入我的Google用户名和密码。与上面的Javascript相比,它们看起来过于复杂。也许有人可以用PHP重写上面的代码?
我不是程序员,所以我不熟悉能做什么或不能做什么。