有谁知道如何使用 PHP 上的 cookie 跟踪用户点击链接的次数?我希望能够在没有数据库的情况下使用简单的 PHP 进行用户登录,但仅将 cookie 用于教育目的。
// Form in HTML
name: _____________
email: ____________
SUBMIT
// After submit, variables $_POST['name'] and $_POST['email'] collect
// Info, records it on COOKIES
// Echo sentence saying: here's your link **which downloads a PDF**
// The click event is recorded as well to make sure that I allow user to click on it once
你们是否仅使用 cookie 和 PHP 对此有任何意见?没有数据库,没有会话,没有安全问题,没有程序设计讽刺请。谢谢你。