存储推荐人的最佳方式?
我有一个拥有数千名用户的网站。每个用户都有一个唯一的 ID,他们可以与朋友分享,并通过这种方式获得推荐。
您建议存储 $_GET['referral']; 的最佳方式是什么?从网址?
I have a site with thousands of users. Each user have an unique ID, that they can share with their friends, and in that way get referrals.
What would you recommend the best way to store the $_GET['referral']; from the URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唯一的推荐 ID 应存储在数据库中。
在用户会话期间,您可以将 ID 存储在他的会话中,如下所示:
Unique referral IDs should be stored in a database.
For the duration of a user's session, you can store the ID in his session like this: