dongxiao0449 2018-07-25 14:40
浏览 41

HTML / PHP联系表单不适用于Heroku

I've created a contact form on my website that worked using xampp server but it's not working on Heroku.

this is the HTML:

<form action="../php/contact.php" method="post">

            <div class="form-group">
                <label>Name</label>   
                <input type="text" name="name" class="form-control frame" required>
            </div>

            <div class="form-group">
                <label>email</label>
                <input type="email" name="email" class="form-control frame" required>
            </div>

            <br>

            <div class="form-group">
                <label>Message</label>    
                <textarea name="message" id="message" cols="" rows="" class="form-control frame"></textarea>
            </div>

            <br>

            <button class="btn btn-outline-secondary" type="submit" name="submit">Send</button>
</form>

And this is the PHP:

<?php
$name = $_POST['name'];
$visitorEmail = $_POST['email'];
$message = $_POST['message'];

$emailFrom = 'haizler.co.il';
$emailSubject = "New Form Submission";
$emailBody = "User Name: $name.
".
                "User Email: $visitorEmail.
".
                "User Message: $message.
";

$to = "realMailOnOriginalCode@gmail.com";
$headers = "From: $emailFrom 
";
$headers .= "Replay-To: $visitorEmail 
";
mail($to,$emailSubject,$emailBody,$headers);
header("Location: contact.html");
?>

When filling the detail and clicking Send I get "Cannot POST /php/contact.php". I've tried changing the php address on the form action, and also tried putting the php file in the same folder has the html file but it didn't work.

This code worked using xampp (after changing the definitions on php.ini xampp file).

Thanks in advance!

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥20 数学建模,尽量用matlab回答,论文格式
    • ¥15 昨天挂载了一下u盘,然后拔了
    • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
    • ¥20 易康econgnition精度验证
    • ¥15 msix packaging tool打包问题
    • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
    • ¥15 python的qt5界面
    • ¥15 无线电能传输系统MATLAB仿真问题
    • ¥50 如何用脚本实现输入法的热键设置
    • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能