我需要在 if 语句中使用 COUNT 查询的结果:
$C = mysql_query("SELECT COUNT(*) FROM tblLinkUserCourse WHERE UserID = $CurrentUserID;");
if ($C==0)
{
echo "You have no courses.";
}
else
{
echo "You have courses.";
}
我正在尝试实现如上所示的目标。你能帮忙吗?