Uniquely identify one computer

后端 未结 9 914
渐次进展
渐次进展 2020-12-07 02:17

I work for a university, and i\'m implementing a PHP web app that needs to have different behavior when it is visited from one certain computer. The problem i am running in

9条回答
  •  渐次进展
    2020-12-07 02:51

    Some thoughts:

    • Set a durable cookie. (Since FF is in kiosk mode, you should be safe from the users clearing it.)
    • Have that kiosk use a different URL (perhaps with a query string parameter).

    What I wouldn't do is work according to the machine's MAC address (which Gibson tells us is possible) or similar; too fragile when hardware gets fixed, etc.

提交回复
热议问题