我有一个 php 文件从 MYSQL 数据库中获取一些数据。到目前为止,这是我的代码:
<?php
include 'DB.php';
$connection=mysql_connect(DB_SERVER,DB_USER,PASS);
$db=mysql_select_db(DB_Name);
$sql="select * from lookup where id = ".$_GET['id'];
$res=mysql_query($sql) or die(mysql_error());
while($row=mysql_fetch_array($res))
{
echo $row['message'];
}
?>
我必须添加什么,以便如果没有数据,就会出现错误消息?我在猜测 If/else 语句,但我不确定如何将其与 while 语法相匹配。有什么帮助吗?