我编写了一个 php 脚本,用于以 json 格式返回数据库中的所有内容。以下代码给了我这个错误。
You have an error in your SQL syntax; check the manual that corresponds to your
MySQL server version for the right syntax to use near ''userCredentials'' at line 1
mysql_fetch_assoc() expects parameter 1 to be resource, boolean given
这是代码:
<?php
require 'testconnect.php';
$sql = "SELECT * FROM 'userCredentials'";
$query = mysql_query($sql);
if($query == false){
echo mysql_error();
echo 'failed query connect';
}
echo 'new success';
while($row = mysql_fetch_assoc($query)) {
echo json_encode($row);
}
?>
这段代码有什么问题?我错过了什么吗?
PS:我不是PHP程序员。我编写了这个脚本以在我的 java 代码中使用它。
问候