如何将 Google 表格与 PHP 网站表单集成:分步指南

如何将 Google 表格与 PHP 网站表单集成:分步指南插图1

将表单数据直接存储在 google 表格中有助于改进数据管理和协作。这种集成使各个团队成员能够实时查看和分析数据,而无需处理复杂的数据库查询。

1.创建 google 表格

前往 google 表格。
创建一个新工作表并相应命名,例如“表单提交”。
在第一行中,为要存储的数据创建标头。例如,如果您要收集姓名、电子邮件和消息,请创建标题为“名称”、“电子邮件”和“消息”的列。

2.创建 google apps 脚本 web 应用

转到扩展 > apps 脚本。

3.编写 google apps 脚本来接受表单数据

function dopost(e) {  let ss = spreadsheetapp.openbyid("123123asdasd"); // change "spreadsheetappid" to your actual sheet id  let sheet = ss.getsheetbyname("sheet1"); // change "sheet1" to your actual sheet name  let data;  try {    data = json.parse(e.postdata.contents);  } catch (err) {    data = e.parameter;  }  sheet.appendrow([data.fname, data.email, data.message]);  return contentservice.createtextoutput("success").setmimetype(contentservice.mimetype.text);}

登录后复制

说明:

函数 dopost(e)

这是 google apps 脚本中的一个特殊函数,每当您的网络应用程序收到 http post 请求时就会触发该函数。 e参数包含表单发送的信息

let ss = spreadsheetapp.openbyid("123123asdasd");

此行通过其唯一 id 打开 google 电子表格。将 id“123123asdasd”替换为您自己的 google 工作表 id,您可以在工作表的 url 中找到该 id。

varsheet = ss.getsheetbyname("sheet1");

立即学习“PHP免费学习笔记(深入)”;

这将检索电子表格中您想要附加表单数据的特定工作表。如果您的工作表有不同的名称,请将“sheet1”替换为您的实际工作表名称。

var 数据;

该变量将在解析后存储传入的表单数据。

尝试{ data = json.parse(e.postdata.contents); } catch (err) { data = e.parameter; }

这里,代码尝试将传入数据解析为 json,假设表单以 json 形式发送数据。如果解析失败(意味着表单使用 url 编码格式),它将回退到 e.parameter,其中包含 url 编码的表单数据。
json.parse(e.postdata.contents):尝试将请求正文解析为 json。
e.parameter:如果表单数据以 url 编码格式发送(这是典型的 html 表单),则保存表单数据。

sheet.appendrow([data.fname, data.email, data.message]);

这会将表单中的数据附加到 google 表格中的下一个可用行。数据是从数据对象中提取的,该对象包含表单输入字段

return contentservice.createtextoutput("成功").setmimetype(contentservice.mimetype.text);

成功将数据附加到工作表后,此行会向客户端(提交表单的网站或应用程序)返回一条成功消息(“成功”)。

contentservice.createtextoutput("success"):创建包含单词“success”的纯文本响应。
setmimetype(contentservice.mimetype.text):将响应的 mime 类型设置为纯文本。

4。将脚本部署为 web 应用程序

单击脚本编辑器右上角的“部署 > 测试部署”。
选择管理部署,然后单击新建部署。
在“选择类型”下拉列表中,选择 web 应用程序。
在“执行为”下,选择“我”。
在“谁有权访问”下,选择“任何人”。
单击“部署”并复制生成的 web 应用程序 url。

5。用于向 google apps 脚本 web 应用程序提交表单数据的 php 代码

html 代码:



    <meta charset="utf-8"><title>submit form</title>

登录后复制

php 代码:

<?php if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $url = 'YOUR_WEB_APP_URL'; // Replace with your Google Apps Script Web App URL

    $postData = array(
        'name' => $_POST['name'],
        'email' =&gt; $_POST['email'],
        'message' =&gt; $_POST['message'],
    );

    $ch = curl_init($url);


    $postFields = http_build_query($postData);

    curl_setopt($ch, CURLOPT_POST, 1); // Send a POST request
    curl_setopt($ch, CURLOPT_POSTFIELDS, $postFields); // Attach the POST fields
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the response as a string

    $response = curl_exec($ch);

    if ($response === false) {
        $error = curl_error($ch);
        echo "cURL error: $error";
    } else {
        echo "Server response: $response";
    }

    curl_close($ch);
}
?&gt;

登录后复制

以上就是如何将 Google 表格与 PHP 网站表单集成:分步指南的详细内容,更多请关注至强加速其它相关文章!

本文来源于互联网,如若侵权,请联系管理员删除,本文链接:https://www.9969.net/45010.html

沫沫沫沫
上一篇 2024年9月7日 17:13
下一篇 2024年9月7日 17:13

相关推荐