我可以向Blogger添加一个.php文件URL吗


Can I add a .php file URL to Blogger?

我想知道是否有一种方法可以使用直接链接将.php文件添加到Blogger模板中。我不确定是否可以通过URL将其添加到我的表单操作中,因为Blogger不直接支持.php。

<form method="post" action="CAN_I_USE_A_URL_HERE?.php">
    <input name="Name" placeholder="Name*:"/>
    <input name="E-mail" type="email" placeholder="E-mail*:"/>
    <input name="Phone" type="email" placeholder="Phone:"/>
    <label>Write your message!</label>
    <textarea name="Message"></textarea>
    <input id="submit" name="submit" type="submit" value="submit"/>
</form>

Blogger不会运行服务器端代码。

您需要将PHP代码放在某个服务器上,该服务器将为您运行它,然后使<form>指向它。