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 中获取该信息?
更新:
向链接和按钮添加一些额外的参数。
对于链接:
<a href="page.php?param1=1¶m2=2&source=link">link text</a>
对于按钮:
<form ...> <input type="hidden" name="source" value="button"> ... <input type="button" ...> </form>
在处理页面输入时,检查$_REQUEST['source']
$_REQUEST['source']