HTML,PHP:表单提交后不会显示变量

时间:2016-11-28 09:57:28

标签: php html

提交以下表单后,部分placeid=2不会显示在网址中。请协助。

<form method="GET" action="localhost/place.php?placeid=2">
    <button class="yesbtn" type="submit">Yes</button>
</form>

3 个答案:

答案 0 :(得分:2)

这就是你应该如何做到的。在表单中使用method =“get”将在URL字符串中显示查询参数,就像在原始表单中一样。

<强> form.html:

<form action="localhost/place.php" method="get">
    <input type="submit" value="2" id="placeid" name="placeid">
</form>

答案 1 :(得分:1)

刚刚在这里测试过,但是如果你想让你的脚本工作的话。你必须使用method =&#34; post&#34;。否则它就不会工作。

我测试了

main

工作http://paules.eu/form.php

Ayoub Elyalaoui的回答很有效,但你想在行动中编码。

答案 2 :(得分:-2)

要以这种方式提交参数,您还可以使用如下隐藏字段:

<input type="hidden" value="<?= $id ?>">