如何建立推荐系统?

时间:2011-05-31 00:04:30

标签: php

  

可能重复:
  https://stackoverflow.com/questions/5850962/how-to-count-clicks-on-a-get-value-with-php

我想创建一个引荐系统,其中每个新访问者都有自己的唯一链接,如http://example.com/?ref=12345。有谁知道如何做到这一点?

1 个答案:

答案 0 :(得分:0)

这个怎么样

$ id = md5($ _ SERVER [" REMOTE_ADDR"])

header('Location: http://www.example.com/?ref='.$id);

我也会将其保存在cookie中,因为IP地址可能会改变!