我尝试编程一些 php。
我有一个网站:/index.php?go=newstep&callid=2
我放的地方:
<form method="post" action="addnew.php"> <input type="text" name="user" /> <input type="text" name="text" /> <input type="hidden" value="<?php echo($_GET["callid"]); ?>" name="test" />
这是因为下一个站点“addnew.php”需要从链接到 ?go=newstep&callid=2 的值“callid”
为什么它不起作用?还有其他方法吗?
谢谢