gpt4 book ai didi

php - 提交表单到数据库错误

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

我正在尝试向 mysql 数据库添加一个简单的表单数据,但似乎不起作用。

它给了我这个错误

Parse error: syntax error, unexpected ';' in portfolio-add-website.php on line 7

portfolio-add-website.php 看起来像这样:

<?php
include 'connect_db.php';

$connect = mysqli_connect(HOST,USERNAME,PASSWORD,DB);

mysqli_query($connect,"INSERT INTO portfolio_websites
(name, link, description, profile_img_name,
cover_img_name, client_name, donedate)
VALUES ('$_POST[name]', '$_POST[link]',
'$_POST[description]',
'$_POST[profile_img_name]',
'$_POST[cover_img_name]', '$_POST[client_name]',
'$_POST[donedate]')";
?>

我没有看到任何意外的“;”。谁能帮我?我确信这是一件小事。

最佳答案

您错过了右大括号

mysqli_query($connect,"INSERT INTO portfolio_websites (name, link, description, profile_img_name, cover_img_name, client_name, donedate) 
VALUES ('$_POST[name]', '$_POST[link]', '$_POST[description]', '$_POST[profile_img_name]', '$_POST[cover_img_name]', '$_POST[client_name]', '$_POST[donedate]')");

关于php - 提交表单到数据库错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32861919/

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