gpt4 book ai didi

php - mysql 使用select 时出错?

转载 作者:行者123 更新时间:2023-11-29 01:10:22 25 4
gpt4 key购买 nike

我有一个问题,每次我尝试做选择和获取这个错误显示

您的 SQL 语法有误;查看与您的 MySQL 服务器版本对应的手册,了解在第 1 行的“添加”附近使用的正确语法

  <?php
mysql_connect("localhost", "root", "123") or die() ;
mysql_select_db("boom") or die() ;
//Retrieves data from MySQL
$select= "select * from add" ;
$data = mysql_query($select) or die();
//Puts it into an array
while($info = mysql_fetch_array( $data ))
{

echo "<img src=images/".$info['photo'] .">";
}
//Outputs the image and other data
?>

这里有什么问题?

最佳答案

add是保留字:

http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html

像这样重写查询:

$select= "select * from `add`" ; 

关于php - mysql 使用select 时出错?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7835698/

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