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.
我正在建立一个网上商店。商店有 4 个步骤,如下所示: ($items['soda/checkout/1'] , $items['soda/checkout/2'] , $items['soda/checkout/3'] , $items[' soda/checkout/4']) 每个步骤只有在前面的步骤已经提交后才能访问。
我想限制访问,这样用户就不能从第一阶段跳到第三阶段第四...
我该怎么做?
虽然,您可以使用值$_SERVER['HTTP_REFERER']来确定当前页面的引用者。但这并不可靠。
$_SERVER['HTTP_REFERER']
相反,您可以将此信息存储在 cookie 中并检查用户的当前阶段并采取相应措施。