PHP如果isset变量没有显示

时间:2017-03-04 19:30:41

标签: php forms variables wampserver

我试图从我的表单中获取变量,但它没有给我任何东西,我也发布了var_dump的帖子,它告诉我数组是0所以表单不是发送数据。我尝试了很多东西,但我认为我有一些错误,或者我的安装并不好。我目前使用的软件是WampServer,PHP版本7.0.10和Windows 10上的PHPStorm。

<html>
<head lang="en">
<meta charset="UTF-8">
</head>
   <body>

<!-- language: PHP -->   
<?php
if(isset($_POST['age'])) {
    $varKapitaal = $_POST['age'];
    echo $varKapitaal;
}
?>

    <h1>Fill in the form</h1>

    <form method="POST" action="">
        <p>age:</p>
        <input type="text" name="age">
        <input type="submit" name="submit">
    </form>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

不,这不是错误。您只需要指定操作URL,其中帖子必须显示数据。实施例

我使用Xampp,并创建目录&amp; file C:\ xampp \ htdocs \ try \ index.php

coord

只需将操作从空白更改为该php文件的URL,就像在我的示例中操作=“http:// localhost / try /”