";
break;
case "2":
$q="<";
break;
case "3":
$q="=";
break;
}
include("connect.php");
$sql="SELECT * FROM sanpham where gia $q $price";
$result = mysql_query($sql);
$String="";
if($result)
while($row = mysql_fetch_array($result))
{
$String=$String. $row['masanpham'].$row['tensanpham'].''.'chinh sua'.''.'
';
}
echo $String;
?>