PHP - hide url (GET) parameters

前端 未结 7 1381
梦谈多话
梦谈多话 2020-12-06 03:45

I have a link in my PHP/HTML like this:



        
相关标签:
7条回答
  • 2020-12-06 04:37

    A login should be done via POST, not GET. Furthermore, sensitive details should be sent via HTTPS.

    The process of creating secure login functionality could have an entire book written about it, so I suggest you start out by reading the definitive guide to web-based forms authentication.

    If you have further specific questions about security, I suggest you try over at Security.SE.

    0 讨论(0)
提交回复
热议问题