个人博客网站调试有关问题
个人博客网站调试问题
我用php+mysql制作了个人博客网站,但是在调试过程中出现了问题,偶一小小菜鸟在大家热心的帮助下基本调试完成,还是有些问题解决不了,求大家帮忙啊
【1】Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in D:\WWW\blog\show_pub.php on line 7
代码如下:
error_reporting(E_ALL^E_NOTICE);
session_start();
include "conn/conn.php";
$pubsql = "select * from tb_public where id= ".$_GET['id'];
$pubrst = mysql_query($pubsql,$link);
$pubrow = mysql_fetch_row($pubrst);
echo "
".$pubrow[2]."
?>
【2】error: mysql query 代码如下:
error_reporting(E_ALL^E_NOTICE);
include "Conn/conn.php";
$query="select * from tb_tpsc where id=".$recid;
$result=mysql_query($query);
if(!$result) die("error: mysql query");
$num=mysql_num_rows($result);
if($num $data = mysql_result($result,0,"file");
echo $data;
?>
【3】


------解决思路----------------------
要学会看错误报告
Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given
是说:mysql_fetch_row() 函数期望第一个参数是一个资源,而现在的是一个 boolean (逻辑)值
那为什么 $pubrst 是逻辑值而不是资源呢?
在 mysql_query 函数说明中有:
mysql_query() 仅对 SELECT,SHOW,EXPLAIN 或 DESCRIBE 语句返回一个资源标识符,如果查询执行不正确则返回 FALSE。
那么显然是 查询执行不正确 了
再往上,$pubsql = "select * from tb_public where id= ".$_GET['id'];
对于这个 sql 指令的生成语句,如果 $_GET['id'] 为空,即 URL 中没有 id=xxx 时
$pubsql 就变成了 select * from tb_public where id= 显然这是错误的指令
如果改成
$pubsql = "select * from tb_public where id='$_GET[id]'";
即便没有 $_GET['id'],sql指令也不会错:select * from tb_public where id=''
顶多查不到东西罢了
------解决思路----------------------
问题2,echo一下 $query 呢?
------解决思路----------------------
第二个不是同样的道理吗?
$query="select * from tb_tpsc where id=".$recid;
这句中,$recid 在哪定义的,如果没定义,那么就变成了 select * from tb_tpsc where id=
这个SQL是错误的。当然就会报错了。

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

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.
