//เลือกลิสต์ประเภทงานอย่างเดียว
if ($_POST[cateid] != "")
{
$where_ = "select * from posttb where cateid = '$_POST[cateid]' order by id desc ";
}
//เลือกลิสต์ประเภทงานและเลือกวันที่เริ่มต้น
if ($_POST[cateid] != "" and $_POST[begindate] != "")
{
$where_ = "select * from posttb where cateid = '$_POST[cateid]' and begindate = '$_POST[begindate]' order by id desc ";
}
//เลือกวันที่เริ่มต้นอย่างเดียว
if ($_POST[begindate] != "")
{
$where_ = "select * from posttb where begindate = '$_POST[begindate]' order by id desc ";
}