gpt4 book ai didi

php - 带有 Firebase 托管的简单 PHP 联系表单

转载 作者:可可西里 更新时间:2023-10-31 22:06:33 25 4
gpt4 key购买 nike

我正在尝试使用以下方法测试 PHP 是否可以在我的 Firebase 托管中运行:

(index.html)

<form action="welcome.php" method="post">
<input type="submit">
</form>

(欢迎.php)

<?php

$to = "my@email.com";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: dummy@email.com";

mail($to,$subject,$txt,$headers);

?>

每次我尝试此操作时,浏览器都会继续尝试打开 PHP 文件而不是处理它。 Firebase 服务器托管是否启用了简单的 PHP 来处理这样的简单表单?如果我能让它以这种方式工作,我将正确构建表单,包括验证等。

谢谢,

最佳答案

来自Firebase Hosting site (强调我的):

We deliver all of your static content (html, js, images, etc.) over a secure SSL connection and serve it on a CDN.

Firebase 托管用于托管静态 Assets 。 Firebase 目前不提供任何在 Firebase 服务器上执行代码的方法。

更新 (2018-08-08):您现在可以运行 Node.js/JavaScript 代码,但是 connecting your Firebase Hosting project to Cloud Functions + Firebase Hosting .但这仍然不允许您运行 PHP 代码。

关于php - 带有 Firebase 托管的简单 PHP 联系表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35523819/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com