我正在编写一个简历脚本,如果mysql查询在表“references”中找到当前job_id的至少一个,我需要插入标题“Reference”,我怎么能够这样做?
答案 0 :(得分:1)
如果您使用的是MySQLi,则可以使用mysql_num_rows()
或$mysqli_result->num_rows
确定查询返回的行数。我推荐的。
然后这是一个简单的if
:
if ($result->num_rows) {
echo 'References';
// do more stuff...
}
答案 1 :(得分:0)
您可以使用$mysqli->num_rows
,请参阅下面的示例代码。
$mysqli = new mysqli("localhost", "user", "password", "database");
if ($mysqli->connect_errno) {
echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
}
$num_references = 0
$res = $mysqli->query("SELECT * FROM references");
$num_references = $res->num_rows;
if ($num_references > 0) {
echo "<h1>Reference</h1>"
}