求高人检查下面的代码错在哪里。
代码如下,添加后提示添加失败。
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> <?phpphpinfo();//这是一个信息增、删、改操作处理页面//一、导入配置文件。 require("dbconfig.php");//二、链接MYSQL、并选择数据库。 $link = @mysql_connect(HOST,USER,PASS) or die("数据库链接错误!"); mysql_select_db(DBNAME,$link);//三、根据action的值,来判断所操作,执行对应的代码。 switch ($_GET["action"]){ case "add": //执行添加 //1、获取要添加的信息,并补充其它信息 $title = $_POST["title"]; $keywords = $_POST["keywords"]; $author = $_POST["author"]; $content = $_POST["content"]; $addtime = time(); //2、添加信息过过滤(省略) //3、拼装添加SQL语句,并执行添加操作 $sql = "insert into news valuse(null,'{$title}','{$keywords}','{$author}','{$addtime}','{$content}')";// echo $sql; //这一步打印正常。 mysql_query($sql,$link); //4、判断是否添加成功, $id = mysql_insert_id($link);//判断刚刚添加的信息ID值值 echo $id; break; if ($id>0){ echo"<h3 id="添加成功">添加成功</h3>"; }else{ echo"<h3 id="添加失败">添加失败</h3>"; } break; case "del": //执行删除 break; case "update": //执行修改 break; }//四、关闭数据库mysql_close($link);?>
回复讨论(解决方案)
$sql = "insert into news valuse(null,'{$title}','{$keywords}','{$author}','{$addtime}','{$content}')";
echo $sql; //这一步打印正常。
把这条sql语句放入到数据库去执行看是什么错误就知道了
可能是 dbconfig.php 不存在
可能是 dbconfig.php 不存在
dbconfig.php有的,而且可以正常链接。
没有语法错误,相关文件存在
那你就该说一下你遇到了什么问题
没有语法错误,相关文件存在
那你就该说一下你遇到了什么问题
dbconfig.php代码如下:
<?phpdefine("HOST","localhost");define("USER","root");define("PASS","zkeys");define("DBNAME","phpmysqlop");?>
数据库如下:
不设置的数据库中的title不允许为空的 但你插入的数据是null 将数据库的title设置为允许为空
mysql_query($sql,$link);
写作
mysql_query($sql,$link) or die(mysql_error());
请大家帮我看一下这两段有什么区别:
第一段:不可用的 //$sql = "insert into news valuse(null,'{$title}','{$keywords}','{$author}','{$addtime}','{$content}')"; 第二段:可以用的 //$sql = "insert into news values(null,'{$title}','{$keywords}','{$author}','{$addtime}','{$content}')";
如果用上面的第一段,不行;换成第二段就可以正常添加,不过没找出原因。请高人帮我看一下。
用的是QQ五笔输入法。
第一段:insert into news valuse
第二段:insert into news values
一个是valuse另一个是valuse
注意拼写啊

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
