我试图排成一行,但它不会在我的网站上返回任何内容,但它在本地主机上运行良好。
public function GetVote($rel)
{
include 'config.php';
$stmt = $dbh->prepare("SELECT updown FROM user_votes WHERE UID = :id AND rel = :rel");
$stmt->bindParam(":id", $this->id);
$stmt->bindParam(":rel", $rel);
$stmt->execute();
$row = $stmt->fetch(PDO::FETCH_ASSOC);
return $row['updown'];
}
在 phpmyadmin 上运行 SQL,站点:
在 phpmyadmin 上运行 SQL,本地:
- 我不知道为什么它说没有唯一的列,VID 是唯一的并且是自动递增的。
表结构: