我想为移动视图分辨率添加 br 标签,如 320px - 480px。我试过 margin top , bottom 但没有用。所以请帮助我。
我想在这两个锚标签之间添加 br 标签。下面两个这样的标签。
<a class="ww" href="counseller.html">Career Counsellor</a>
<a class="xx" href="mentors.html"> Career Mentor</a>Run Code Online (Sandbox Code Playgroud)
如何检查mysql结果是否为空.如果mysql查询结果为空,则不应该删除condtion.如果mysql结果数据在那里&在其他条件我的错误我的消息在那里,但它没有显示任何错误消息.我尝试了以下代码但未在屏幕上显示任何警报或回显消息.
<?php
$sql = "select * from hall_search_data_1 where rent BETWEEN '".$_SESSION['amount1']."' AND '".$_SESSION['amount2']."'";
$res = mysql_query($sql);
if(!empty($res)){
while($row=mysql_fetch_row($res))
{
// here my data
}
}else{
echo "no results found";
echo "<br>";
echo "<script>alert('No any result found..!!');</script>";
echo "no results found";
}
?>Run Code Online (Sandbox Code Playgroud)