Is there anyway to carry a value in php forward to a second page?
我尝试过类似于这篇文章中某人回答的内容,但它告诉我,我是未定义的。我相信这是因为我试图使用 ?i =行动后而不是链接。另外,我需要将i作为变量而不是常数。这有可能,我该如何解决这个问题?
echo '<form action="gallery.php?i=0" method="post">
<input type="submit" name="action" value="Previous">
<input type="submit" name="action" value="Next">';
答案 0 :(得分:1)
在生成表单的php中使用隐藏的输入及其值。
至少我认为这就是你所要求的。
<input type="hidden" name="i" value="/* here goes your variable*/"
答案 1 :(得分:0)
我建议使用:
<input type="hidden" name="i" value="0" />
转发价值观。但请记住,恶意用户可以操纵此值,因此您应始终验证它以及其他字段。