我没有设法显示一条消息,当该表为空时此查询没有找到,有人可以说我哪里出错了?
<?php
$sqlRead = "SELECT * FROM dados ORDER BY name ASC";
try{
$read = $db->prepare($sqlRead);
$read->execute();
} catch (PDOException $e) {
echo $e->getMessage();
}
while ($rs = $read->fetch(PDO::FETCH_OBJ)){
?>
<h1><?php echo $rs->name; ?></h1>
答案 0 :(得分:0)
我找到了解决方案
.modal-dialog {
position: absolute;
top: 50%;
/*half of the modal height*/
margin-top: -100px;
left: 50%;
/*half of the modal width*/
margin-left: -180px;
}
使用上面的代码,如果找不到任何内容,可以显示消息 数据库