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文件的变量用于另一个?
如果按下一个按钮,我试图增加数据库的计数变量,并在 php 中按下另一个按钮时减少。
非常急需回答。谢谢你...
很紧急?比非常急用$_SESSION
$_SESSION
像这样将值存储在会话中
$_SESSION['whatever'] = $value_holder;
注意:不要忘记session_start()在您网站的最顶部使用,您还需要使用条件来增加该会话的减量值
session_start()