我有以下MySQL查询需要传递给query()
。我无法理解它。
INSERT INTO admin (student_name, student_email, student_city) VALUES ('mark','mark@mark.com','newark');
我从中获取脚本的地方给出了以下内容,
$sql = "INSERT INTO students (student_name, student_email, student_city) VALUES ('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')";
我理解的部分是('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')
那里发生了什么?所有那些引号和句号都让我感到困惑。
答案 0 :(得分:2)
这里使用PHP中的.
连接SQL。
所以,让我们来看看这个:
// 12 3 45678
// vv v vvvvv
('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')";
'
将打开MySQL单引号。"
以PHP结束字符串。 .
将当前PHP字符串与$_POST['stu_name']
.
"
打开PHP字符串。 '
打开的MySQL字符串。,
输入第二个值'
在MySQL中打开一个字符串。然后这个过程重复进行。 答案 1 :(得分:1)
这是一个很好的评论:
('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')";
整个查询需要用双引号扭曲,但是当你想要连接一个变量时 - >
('".$_POST["stu_name"] <-- this part is leaving the query as
('Value
('".$_POST["stu_name"]."', <-- this part is leaving the query as
('Value',
逗号中的每个值都需要在它们的两边连接成两个单引号,因此单引号符号。每个点(。)将变量连接到现有字符串并返回到字符串中。
答案 2 :(得分:0)
试试这个,你只有引号:
["stu_name"] chnaged this to ['stu_name']
$sql = "INSERT INTO students (student_name, student_email, student_city) VALUES ('".$_POST['stu_name']"','".$_POST['stu_email']."','".$_POST['stu_city']."')";
答案 3 :(得分:0)
如果使用POST方法
$stu_name = $_POST["stu_name"] //mark
$stu_email = $_POST["stu_email"] //mark@mark.com
$stu_city = $_POST["stu_city"] //newark
$sql = "INSERT INTO students (student_name, student_email, student_city) VALUES ('$stu_name','$stu_email','$stu_city')";
以上与
相同$sql = "INSERT INTO admin (student_name, student_email, student_city) VALUES ('mark','mark@mark.com','newark')";
答案 4 :(得分:0)
当你在我的SQL查询数据库中插入一个字符串时,你必须加上“或'字符
根据您的问题,查询子句是:
$sql = "INSERT INTO students (student_name, student_email, student_city) VALUES ('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')";
$_POST["stu_name"]
,$_POST["stu_email"]
,$_POST["stu_city"]
是您使用$_POST
方法
祝你好运, 宣
答案 5 :(得分:0)
只需在查询后面添加一行
echo "INSERT INTO students (student_name, student_email, student_city) VALUES ('".$_POST["stu_name"]."','".$_POST["stu_email"]."','".$_POST["stu_city"]."')";
它将使用值打印SQL查询。请注意值中的'
。在这里,您将字符串值传递给表,因此您使用'
和逗号分隔值。希望这能帮助您快速理解。
注意:请勿在生产服务器上使用它。在本地服务器上使用它。