gpt4 book ai didi

php - 变量进入数据库而不通过 $_POST 检索

转载 作者:搜寻专家 更新时间:2023-10-30 19:56:44 24 4
gpt4 key购买 nike

这行得通,但是如何将变量的值放入数据库而不通过 $_POST 检索它们?这是 php5 中的新功能还是我以前从未见过它以这种方式使用?

  <!doctype html>

<html>

<head>
<title></title>
</head

<body>
<form action="insert.php" method="post">
First Name: <input type="text" name="fname" /><br>
Last Name: <input type="text" name="lname" /><br>
Username: <input type="text" name="uname" /><br>

<input type="submit" name="submit" value="Register"/><br>
</form>

</body>
</html>

插入.php

<?php

$con=mysqli_connect("","","","");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$sql="INSERT INTO traders (fname, lname, username)
VALUES
('$fname','$lname','$uname')";

if (!mysqli_query($con,$sql))
{
die('Error: ' . mysqli_error($con));
}
echo "1 record added " ;

mysqli_close($con);
?>

最佳答案

因为您在此处使用 register globals 选项在 php 中现在已在新版本的 php 中弃用/删除(主要是因为安全问题)翻译 $_POST['fName']$fName

您应该始终使用$_POST/$_GET

阅读更多:http://php.net/manual/en/security.globals.php

关于php - 变量进入数据库而不通过 $_POST 检索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17903088/

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