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.
我有一个 Flash 游戏,我想将获胜者的名字保存在数据库中。为此,我将名称和点发送到 PHP 文件。我知道这样做,并通过 PHP GET 变量接收信息。
scores.php?winner=name&points=5034
如我所见,它将正常工作。但我想到了一个问题。如果有人只是手动启动到 PHP 文件怎么办?
您不使用加密方法来加密数据并发送它们。阅读这篇文章了解更多信息。获取值时解密并将它们存储在数据库中。否则,您可以使用 POST 方法。阅读更多。