Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码:
<form action=\"index.php?m=".$mm."&y=".$y."\"> <input type=\"submit\" value=\"<\"> </form>
变量 $mm 和 $y 被初始化并具有一个值。但我只会被重定向到:
索引.php?
我做错了什么?
使用(默认)提交表单method="get"会将操作中的任何查询字符串替换为表单数据生成的查询字符串。
method="get"
将您的m和y值存储在<input type="hidden" …>元素中。
m
y
<input type="hidden" …>
那是因为您需要回显 $mm 和 $y 的值
<form action="index.php?m=<?php echo $mm;?>&y=<?php echo $y;?>"> <input type="submit" value="" /> </form>