duankao4489 2016-11-04 18:21
浏览 157
已采纳

运行php文件后如何打开html文件? [重复]

This question already has an answer here:

I am a complete beginner in web development in regards to php. Right not I am using:

    <form action="phpfile.php">
    <input type="submit" value="click on me!">
    </form>

To open up my php file, which is a simple echo "hello world!" (for testing purposes) The php file that I would use would be this sendmail file

    <?php
    $to = 'example@gmail.com';
    $subject = 'Mailer Test';
    $message = 'This is a test, Thanks Person';
    $headers = "From: your@email-address.com
";
    ?>

How can, after this is run, a html file would open as soon as the file is done loading? Like a "You have completed the task" page essentially (Also I'm using Xampp which has inbuilt sendmail, so the file does work. Once again temporary before I move onto a webserver)

Thanks!!

</div>
  • 写回答

2条回答 默认 最新

  • duanjue7508 2016-11-04 18:26
    关注

    use this :

    header('Location: http://localhost/yourHtmlFile.html');

    but make sure your php didn't output anything before it

    update

    another workaround is to use include ('yourHtmlFile.html');

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?