<?php
$sql="select * from tblnews";
$sql.=" where 1";
//ค้นหาหัวข้อข่าว
if($_POST['txtsearch']!=""){
$sql.=" and news_topic like '%$_POST[txtsearch]%'";
}
//ค้นหาหมวดหมู่ข่าว
if($_POST['cate_id']!=""){
$sql.=" and cate_id=".$_POST['cate_id'];
}
$sql.=" order by news_id desc limit 0,9 ";
$query=mysql_query($sql);
$numrow=mysql_num_rows($query);
while($row=mysql_fetch_assoc($query)){