ช่วยแก้หน่อย ค้นหาไม่เจอข้อมูลให้ฟ้องขึ้นมาว่าไม่มีข้อมูลที่ต้องค้นหา
ช่วยแก้หน่อย ค้นหาไม่เจอข้อมูลให้ฟ้องขึ้นมาว่าไม่มีข้อมูลที่ต้องการค้นหา
Date :
2009-03-04 17:58:09
By :
aukkadet
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<table width="98%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><form id="form1" method="post" action="<? echo "page4.php?search=T"; ?>">
<span class="style14">ค้นหาบุคลากร</span>
<label>
<input name="txtsearch" type="text" id="txtsearch" value="<?
$txtsearch=$_POST["txtsearch"];
echo "$txtsearch";
?>" />
</label>
<label>
<input type="submit" name="Submit" value=" ลงมือค้น " />
</label>
</form></td>
</tr>
<tr>
<td><?
$delemp=$_GET["delemp"];
$emp_id=$_GET["emp_id"];
//ลบ
include("condb.php");
if ($delemp=="T") {
$sql8="delete from employee where emp_id='$emp_id' ";
$dbquery8=mysql_db_query($database,$sql8) or die ("ไม่สามารถทำตามคำสั่ง $sql8 ได้");
}
mysql_close();
?>
<?
$search=$_GET["search"];
$txtsearch=$_POST["txtsearch"];
if ($search=="T") { //if1
include("condb.php");
$sql="select * from employee where emp_id='$txtsearch' or emp_name like '%$txtsearch%' or emp_add like '%$txtsearch%' order by emp_id ";
$dbquery=mysql_db_query($database,$sql) or die ("error: $sql");
$num_rows=mysql_num_rows($dbquery);
echo "ค้นหาพบจำนวน $num_rows ระเบียน คำที่ใช้ค้นหาคือ $txtsearch";
if($nume_rows!=0){ //if2
?>
</td>
</tr>
<tr>
<td><table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#E3E3E3">
<tr>
<td width="5%" rowspan="2" bgcolor="#F1F1F1"><div align="center">ที่</div></td>
<td width="20%" rowspan="2" bgcolor="#F1F1F1"><div align="center">รหัส</div></td>
<td width="30%" rowspan="2" bgcolor="#F1F1F1"><div align="center">ชื่อ</div></td>
<td height="15" colspan="6" bgcolor="#F1F1F1"><div align="center">ข้อมูลประวัติทั่วไป</div></td>
</tr>
<tr>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 1)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 2)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 3)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 4)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 5)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">ลบ</div></td>
</tr>
<?
$i=1;
while ($i<=$num_rows) { // if3
$resulf=mysql_fetch_array($dbquery);
$emp_id=$resulf["emp_id"];
$emp_name=$resulf["emp_name"];
$emp_title=$resulf["emp_title"];
echo "
<tr>
<td><center>$i</center></td>
<td><center>$emp_id</center></td>
<td>$emp_title $emp_name</td>
<td><center><a href=page5.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_1.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_2.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_3.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_4.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center>
<a href=page4.php?delemp=T&emp_id=$emp_id onclick=\" return confirm ('คุณต้องการลบข้อมูลของ : $emp_id , $emp_name ออกจากระบบหรือไม่')\">ลบ</a>
</center></td>
</tr>";
$i++;
}// end if3
}// end if2
else{ // if 4
echo "ไม่ีข้อมูลที่ค้นหา"ว
} //end if4
} // end if1
?>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><p>ความหมายสัญลักษณ์หน้า</p>
<li>(หน้า1) หมายถึง ประวัติบุคลากร</li>
<li>(หน้า2) หมายถึง ประวัติการศึกษา </li>
<li>(หน้า3) หมายถึง ประวัติการรับราชการ </li>
<li>(หน้า4) หมายถึง ประวัติการลงโทษทางวินัย </li>
<li>(หน้า5) หมายถึง ประวัติเครื่องราชอิสริยาภรณ์ </li></td>
</tr>
</table>
</body>
</html>
Date :
2009-03-05 10:28:46
By :
pokultra
แก้ไขครับ เมื่อสักครู่จะใส่ ; แต่ลืมเปลี่ยนภาษา เลยเป็น ว
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<table width="98%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><form id="form1" method="post" action="<? echo "page4.php?search=T"; ?>">
<span class="style14">ค้นหาบุคลากร</span>
<label>
<input name="txtsearch" type="text" id="txtsearch" value="<?
$txtsearch=$_POST["txtsearch"];
echo "$txtsearch";
?>" />
</label>
<label>
<input type="submit" name="Submit" value=" ลงมือค้น " />
</label>
</form></td>
</tr>
<tr>
<td><?
$delemp=$_GET["delemp"];
$emp_id=$_GET["emp_id"];
//ลบ
include("condb.php");
if ($delemp=="T") {
$sql8="delete from employee where emp_id='$emp_id' ";
$dbquery8=mysql_db_query($database,$sql8) or die ("ไม่สามารถทำตามคำสั่ง $sql8 ได้");
}
mysql_close();
?>
<?
$search=$_GET["search"];
$txtsearch=$_POST["txtsearch"];
if ($search=="T") { //if1
include("condb.php");
$sql="select * from employee where emp_id='$txtsearch' or emp_name like '%$txtsearch%' or emp_add like '%$txtsearch%' order by emp_id ";
$dbquery=mysql_db_query($database,$sql) or die ("error: $sql");
$num_rows=mysql_num_rows($dbquery);
echo "ค้นหาพบจำนวน $num_rows ระเบียน คำที่ใช้ค้นหาคือ $txtsearch";
if($nume_rows!=0){ //if2
?>
</td>
</tr>
<tr>
<td><table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#E3E3E3">
<tr>
<td width="5%" rowspan="2" bgcolor="#F1F1F1"><div align="center">ที่</div></td>
<td width="20%" rowspan="2" bgcolor="#F1F1F1"><div align="center">รหัส</div></td>
<td width="30%" rowspan="2" bgcolor="#F1F1F1"><div align="center">ชื่อ</div></td>
<td height="15" colspan="6" bgcolor="#F1F1F1"><div align="center">ข้อมูลประวัติทั่วไป</div></td>
</tr>
<tr>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 1)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 2)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 3)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 4)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 5)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">ลบ</div></td>
</tr>
<?
$i=1;
while ($i<=$num_rows) { // if3
$resulf=mysql_fetch_array($dbquery);
$emp_id=$resulf["emp_id"];
$emp_name=$resulf["emp_name"];
$emp_title=$resulf["emp_title"];
echo "
<tr>
<td><center>$i</center></td>
<td><center>$emp_id</center></td>
<td>$emp_title $emp_name</td>
<td><center><a href=page5.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_1.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_2.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_3.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_4.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center>
<a href=page4.php?delemp=T&emp_id=$emp_id onclick=\" return confirm ('คุณต้องการลบข้อมูลของ : $emp_id , $emp_name ออกจากระบบหรือไม่')\">ลบ</a>
</center></td>
</tr>";
$i++;
}// end if3
}// end if2
else{ // if 4
echo "ไม่ีข้อมูลที่ค้นหา";
} //end if4
} // end if1
?>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><p>ความหมายสัญลักษณ์หน้า</p>
<li>(หน้า1) หมายถึง ประวัติบุคลากร</li>
<li>(หน้า2) หมายถึง ประวัติการศึกษา </li>
<li>(หน้า3) หมายถึง ประวัติการรับราชการ </li>
<li>(หน้า4) หมายถึง ประวัติการลงโทษทางวินัย </li>
<li>(หน้า5) หมายถึง ประวัติเครื่องราชอิสริยาภรณ์ </li></td>
</tr>
</table>
</body>
</html>
ลองดูครับ
Date :
2009-03-05 10:31:35
By :
pokultra
ลองแล้วครับคุณ pokultra ค้นหาไม่เจอฟ้องไม่พบข้อมูลได้ครับแต่
ค้นเจอข้อมูลที่ต้องการแต่กลับไม่แสดงข้อมูลครับแล้วยังฟ้องไม่พบข้อมูลที่ต้อมการอีก งง
Date :
2009-03-05 11:54:50
By :
aukkadet
แก้ได้หรือยังครับ คุณ max
Date :
2009-03-09 09:59:13
By :
pokultra
Code (PHP)
<table width="98%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><form id="form1" method="post" action="<? echo "page4.php?search=T"; ?>">
<span class="style14">ค้นหาบุคลากร</span>
<label>
<input name="txtsearch" type="text" id="txtsearch" value="<?
$txtsearch=$_POST["txtsearch"];
echo "$txtsearch";
?>" />
</label>
<label>
<input type="submit" name="Submit" value=" ลงมือค้น " />
</label>
</form> </td>
</tr>
<tr>
<td>
<?
$delemp=$_GET["delemp"];
$emp_id=$_GET["emp_id"];
//ลบ
include("condb.php");
if ($delemp=="T") {
$sql8="delete from employee where emp_id='$emp_id' ";
$dbquery8=mysql_db_query($database,$sql8) or die ("ไม่สามารถทำตามคำสั่ง $sql8 ได้");
}
mysql_close();
?>
<?
$search=$_GET["search"];
$txtsearch=$_POST["txtsearch"];
if ($search=="T") { //if 1
include("condb.php");
$sql="select * from employee where emp_id='$txtsearch' or emp_name like '%$txtsearch%' or emp_add like '%$txtsearch%' order by emp_id ";
$dbquery=mysql_db_query($database,$sql) or die ("error: $sql");
$num_rows=mysql_num_rows($dbquery);
echo "ค้นหาพบจำนวน $num_rows ระเบียน คำที่ใช้ค้นหาคือ $txtsearch";
if($num_rows!=0) {
?>
</td>
</tr>
<tr>
<td><table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#E3E3E3">
<tr>
<td width="5%" rowspan="2" bgcolor="#F1F1F1"><div align="center">ที่</div></td>
<td width="20%" rowspan="2" bgcolor="#F1F1F1"><div align="center">รหัส</div></td>
<td width="30%" rowspan="2" bgcolor="#F1F1F1"><div align="center">ชื่อ</div></td>
<td height="15" colspan="6" bgcolor="#F1F1F1"><div align="center">ข้อมูลประวัติทั่วไป</div></td>
</tr>
<tr>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 1)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 2)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 3)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 4)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">(หน้า 5)</div></td>
<td width="9%" bgcolor="#F1F1F1"><div align="center">ลบ</div></td>
</tr>
<?
$i=1;
while ($i<=$num_rows) { // if 3
$resulf=mysql_fetch_array($dbquery);
$emp_id=$resulf["emp_id"];
$emp_name=$resulf["emp_name"];
$emp_title=$resulf["emp_title"];
echo "
<tr>
<td><center>$i</center></td>
<td><center>$emp_id</center></td>
<td>$emp_title $emp_name</td>
<td><center><a href=page5.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_1.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_2.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_3.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center><a href=page5_4.php?emp_id=$emp_id>เปิด</a></center></td>
<td><center>
<a href=page4.php?delemp=T&emp_id=$emp_id onclick=\" return confirm ('คุณต้องการลบข้อมูลของ : $emp_id , $emp_name ออกจากระบบหรือไม่')\">ลบ</a>
</center></td>
</tr>";
$i++;
} // end if3
} else {
echo "ไม่เจอข้อมูลที่ต้องการค้นหา";
}// end if2
}//end if1
?>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><p>ความหมายสัญลักษณ์หน้า</p>
<li>(หน้า1) หมายถึง ประวัติบุคลากร</li>
<li>(หน้า2) หมายถึง ประวัติการศึกษา </li>
<li>(หน้า3) หมายถึง ประวัติการรับราชการ </li>
<li>(หน้า4) หมายถึง ประวัติการลงโทษทางวินัย </li>
<li>(หน้า5) หมายถึง ประวัติเครื่องราชอิสริยาภรณ์ </li>
</td>
</tr>
</table>
Date :
2009-03-09 10:17:22
By :
pokultra
Load balance : Server 01