这是我的简单 sql 查询:
<?php
// making the database connection
$db2=mysql_connect("localhost","root","");
mysql_select_db("my_requests",$db2);
$x=time();
$query=mysql_query("SELECT * FROM 'details' INNER JOIN 'product' ON details.user_id = product.user_id"); // find the city
$row=mysql_fetch_array($query);// save record
// extract city id
echo "$row";
每当我运行这个脚本时,它都会说,
警告:mysql_fetch_array() 期望参数 1 是资源,布尔值在第 7 行的 C:\xampp\htdocs\my_cityway\timeout.php 中给出
哪里出了问题?