gpt4 book ai didi

php - 如何在cPanel中将文本框值插入Mysql?

转载 作者:行者123 更新时间:2023-11-30 01:07:15 26 4
gpt4 key购买 nike

我想将文本框值插入 Mysql。我在这里使用 cPanel 服务器。我读过一些文章并得出了这段代码。但它没有插入到数据库中。我确信连接已经建立。我在这里做错了什么?有什么帮助吗?这里是代码,请随意编辑。

if (!empty($name) || !empty($email) || !empty($office_id) || !empty($title) || !empty($story)) {


$save_sql = "INSERT INTO `tbl_story` (filename, name, email, office_id, title, story) VALUES ('$img_newname','$name','$email','$office_id','$title','$story')";

$query = mysql_query($save_sql,$con) or die(mysql_error("Could not write information to the database"));

if (mysql_affected_rows($con) == 0) {
echo 'Your story was not created.';
} else {
echo 'Your story was created successfully';
} }

最佳答案

您的所有查询参数都没有插入到数据库表中,或者只有“story”列没有插入?

您确定连接已建立。以下几点可能对您有帮助

  1. 如果您没有收到错误,您是否尝试过将 error_reporting 设置为 on,这可能会帮助您获得准确的错误。
  2. 还尝试 echo $save_sql;这会给你一些提示。
  3. 尝试检查您为“story”定义的数据类型

关于php - 如何在cPanel中将文本框值插入Mysql?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19652935/

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