gpt4 book ai didi

php - 执行查询 PHP 时出错

转载 作者:行者123 更新时间:2023-11-29 19:04:09 25 4
gpt4 key购买 nike

我正在尝试将姓名插入到我使用 mysql 创建的用户表中。必须插入数据的 process.php 文件在第 10 行(INSERT 之前的“)抛出语法错误:

Parse error: syntax error, unexpected ' " ', expecting ' , ' or ' )'

有什么问题吗?这是我的代码:

<?php include 'database.php';


// create a variable
$first_name=$_POST['first_name'];
$last_name=$_POST['last_name'];


//Execute the query
mysqli_query ($connect"INSERT INTO User(Name, Pass)
VALUES('$first_name','$last_name')");

?>

最佳答案

使用这个

mysqli_query ($connect,"INSERT INTO User(Name, Pass)
VALUES('$first_name','$last_name')");

关于php - 执行查询 PHP 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43641784/

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