在php中将数据从表单传递给控制器

时间:2016-04-21 10:54:26

标签: php html model-view-controller

我在view.php文件中使用了以下代码。如何将名称和电子邮件传递给controller.php文件。

    <?php $input = '1' ?>

    <div>
        <form action="<?php echo $input; ?>" method="post">
            Name: <input type="text" name="name"><br>
            Email: <input type="text" name="email"><br>
            <input type="submit" value="Submit">
        </form>
    </div>

</body>

任何帮助都可以得到真正的赞赏。

1 个答案:

答案 0 :(得分:0)

我不太确定你想要什么,但这可能就是你要找的东西:

if(change in location) {
    Send information to server
}