-6ren">
gpt4 book ai didi

php - 在 URL 查询中传递 PHP 变量

转载 作者:行者123 更新时间:2023-11-29 11:07:34 28 4
gpt4 key购买 nike

这是放置在unlock.php中的代码:

> <?php require_once("../../db-config.php");
>
> $Result = "ERROR, still locked..."; if (isset($_POST['User'])) {
> if (mysql_query("DELETE FROM LoginAttempts WHERE User='".$_POST['User']."'", $conn))
> $Result = "User Unlocked"; } if ($conn)
> mysql_close($conn); echo $Result; ?>

我想解锁用户,我正在尝试这样做,但收到错误“错误仍然锁定...”而不是“用户已解锁”:

http://example.com/unlock.php?User=Administrador

我应该如何在 URL 中传递变量 User=name

最佳答案

您可以使用 $_GET 收集您的 URL 参数。或$_REQUEST (从 POST、GET 和 COOKIE 收集)。

请注意此调用:

http://example.com/unlock.php?User=Administrador' OR 1=1

将清空您的LoginAttempts table 。

至少用 mysql_real_escape_string($_GET['User']) 清理你的输入.

关于php - 在 URL 查询中传递 PHP 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41161204/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com