-2

预览html表单的表单数据同时发送电子邮件并打开一个新表单

控制流程是这样的

form1.html// 包含 email1.php

form2.html// 我包含在 email1.php 中

email2.php// 我包含了success.html

请帮助在提交后立即预览 form1.html,然后再预览 form2。

4

1 回答 1

2

您必须使用 session 或 mysql 创建另一个 php 通过表获取结果。使用会话的编码示例:

获取结果.php

    <?php
    session_start();
    $firstname = $_POST['firstname']; // Gets the form's input
    $fname = $_SESSION['fname']; 
    ?>

预览.php

    <?php
    session_start();
    $firstname = $_SESSION['fname']
    ?>


     <form action="" method="post"> <!-- Show the form -->
     <input type="text" name="firstname" value="<?php echo $firstname; ?>">
     </form>

在电子邮件部分,您应该做对什么?

于 2012-08-03T07:53:41.840 回答