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.
假设用户点击了一个按钮。客户端收到一些我使用的数据。如果用户收到数字 2,下次再次点击时我需要知道是 2。用户看不到这个数字。
我使用隐藏输入以供以后使用 或 cookie/会话 或 其他东西?
会话将起作用:
session_start(); $_SESSION['number'] = 2;
尝试将针对特定用户的数据存储到数据库中,试试 MySQL,它非常容易和快速访问数据库。