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.
我想知道如何更改 PHP 变量,该变量$ID通过在文本框中键入内容来调用,但无需将页面转移到新页面。
$ID
因此,例如,如果我$ID的值为 1,并且我在文本框 2 中输入,按提交,那么我的变量$ID将变为 2。
您可以使用ajax发布值,但变量在请求之间无论如何都会丢失其状态。您最好将其保存为会话变量:
session_start(); $_SESSION['ID']=$_POST['ID'];