示例php自我提交表单示例

时间:2014-01-18 07:17:31

标签: php forms post get

每隔一段时间你就需要一个有效的例子,我在POST和amp;之间一直感到困惑。 GET请求。

2 个答案:

答案 0 :(得分:1)

$_POST变量是从“单页”内的表单提交数据时使用的变量,而$_GET变量是可以“通过URL传递到另一页”的变量,从而启用其他.php页面通过$_GET变量使用您的变量。

还有$_REQUEST可用于从$_POST$_GET变量的表单中获取数据。

答案 1 :(得分:0)

<?php
// Check if action is set
if(isset($_POST["action"]))
{
    switch($_POST["action"])
    {
        case "number_submit" :
            // Submission from the number submit form
            header("Location: ".$_SERVER["PHP_SELF"]."?number=".$_POST["number"]);
            die();
        default :
            die("Unknown action : ".$_POST["action"]);
            break;
    }
}
?>
<html>
<head>
    <title>Self Submit</title>
</head>

<body>
    <?php
    if(isset($_GET["number"]))
    {
        // Display the number if it is set.
        ?>
        Here is the number : <?php echo ($_GET["number"]); ?><br />
        <a href="<?php echo $_SERVER["PHP_SELF"]; ?>">Click here to enter another number..</a>
        <?php
    } else {
        // Display the form
        ?>
        <form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="post">
        <input type="hidden" name="action" value="number_submit" />
        Please enter a number : <input type="text" name="number" />
        <input type="submit" value="Submit" />
        </form>
        <?php
    }
    ?>
</body>
</html>