Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
创建 HTML 表单时,表单在什么情况下应该使用 GET 方法,什么情况下应该使用 POST 方法。这是一个简单的问题,用于解释使用这两种方法的选项,具体取决于如何处理表单和信息,以及如何帮助使用其中一种。
好吧,我是菜鸟,但我可以说,$_GET['']当发送到服务器的信息没有任何安全风险时,总是使用全局。例如:您不能通过 URL 发送密码,另一方面,您应该始终使用 POST 提交敏感数据
$_GET['']
我自己最近有这个问题。我发现的差异的最佳描述在这里:
http://www.w3schools.com/tags/ref_httpmethods.asp