<?php session_start(); include("db/connect.php");//เรียกใช้ไฟล์connect.php error_reporting (E_ALL ^ E_NOTICE); //ดัก noticeออกไป if($_GET['do']=="delete")//เข้าเงื่อนไข $_GET (คือการที่เพิ่มข้อมูลมากแต่ต้องมาพร้อมกับฟอร์ม)โดยใช้กับปุ่มdelete { $sid = $_GET['sid']; $a = "DELETE from meeting where meeting_id = '$sid'"; $query = mysql_query($a)or die(mysql_error()); echo "<script type='text/javascript'>alert('บันทึกข้อมูลเรียบร้อยแล้ว')</script>"; echo "<meta http-equiv ='refresh'content='0;URL=show_meeting.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=utf-8" /> <title>Untitled Document</title> </head> <body> <form action = "show_meeting.php" method = "post" > <table width="90%" height="10%" align="center"> <tr> <th><center>ค้นหารายละเอียดเอกสาร : <input type="text" name="search" id="search" value="<? echo $meet_description; ?>" ; /> <input name="find" type="submit" id="find" value="ค้นหา" /></center></th> </tr> <tr> <td><div align="right">[ <a href="meeting.php"> เพิ่มเอกสาร</a> ]</div></td></tr> </table> </form> <table width="90%" border="2" cellspacing="0" cellpadding="2" align="center"> <tr> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">ชื่อเอกสารรายงาน / วาระ</th> <th width="10%" height="32" bgcolor="#FFFF33" scope="col">วันที่</th> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">เอกสารแนบวาระ / ไฟล์เอกสาร</th> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">รายงานการประชุม / ไฟล์เอกสาร</th> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">รายละเอียดเอกสาร</th> <th width="2%" bgcolor="#FFFF33" scope="col">ลบ</th> </tr> <?php $strQuery = "SELECT * FROM meeting"; if(isset($_POST['search']) ) { $strQuery = $strQuery . " WHERE meet_description LIKE '%". $_POST['search']. "%' "; } $strQuery = $strQuery . ";"; //echo $strQuery . "</br>"; $check_log = mysql_query($strQuery) or die (mysql_error()); $num = mysql_num_rows($check_log); if($num <=0) { } $n=0;//ให้ค่า n= 0 while ($objResult = mysql_fetch_array($check_log)){ ?> <tr> <td align="center"><?=$objResult["agen"];?> <?=$objResult["meeting_name"];?></td> <td align="center"><?=$objResult["date_meet_up"];?></td> <td align="center"><?=$objResult["agenda"];?></td> <td align="center"><?=$objResult["meet_no"];?></td> <td align="center"><?=$objResult["meet_description"];?></td> <td align="center"><a href="add_meeting.php?do=edit&sid=<?php echo $objResult["meeting_id"]; ?>">แก้ไข</a> | <a href="show_meeting.php?do=delete&sid=<?php echo $objResult["meeting_id"]; ?>">ลบ</a></td> </tr> <?php $a++; } ?> </table> </table> </body> </html>
<?php session_start(); include("db/connect.php");//เรียกใช้ไฟล์connect.php error_reporting (E_ALL ^ E_NOTICE); //ดัก noticeออกไป if($_GET['do']=="delete")//เข้าเงื่อนไข $_GET (คือการที่เพิ่มข้อมูลมากแต่ต้องมาพร้อมกับฟอร์ม)โดยใช้กับปุ่มdelete { $sid = $_GET['sid']; $a = "UPDATE meeting SET meet_act = 'n' where meeting_id = '".$sid."'"; $query = mysql_query($a)or die(mysql_error()); echo "<script type='text/javascript'>alert('บันทึกข้อมูลเรียบร้อยแล้ว')</script>"; echo "<meta http-equiv ='refresh'content='0;URL=show_meeting.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=utf-8" /> <title>Untitled Document</title> </head> <body> <form action = "show_meeting.php" method = "post" > <table width="90%" height="10%" align="center"> <tr> <th><center>ค้นหารายละเอียดเอกสาร : <input type="text" name="search" id="search" value="<? echo $meet_description; ?>" ; /> <input name="find" type="submit" id="find" value="ค้นหา" /></center></th> </tr> <tr> <td><div align="right">[ <a href="meeting.php"> เพิ่มเอกสาร</a> ]</div></td></tr> </table> </form> <table width="90%" border="2" cellspacing="0" cellpadding="2" align="center"> <tr> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">ชื่อเอกสารรายงาน / วาระ</th> <th width="10%" height="32" bgcolor="#FFFF33" scope="col">วันที่</th> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">เอกสารแนบวาระ / ไฟล์เอกสาร</th> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">รายงานการประชุม / ไฟล์เอกสาร</th> <th width="20%" height="32" bgcolor="#FFFF33" scope="col">รายละเอียดเอกสาร</th> <th width="2%" bgcolor="#FFFF33" scope="col">ลบ</th> </tr> <?php $strQuery = "SELECT * FROM meeting"; if(isset($_POST['search']) ) { $strQuery = $strQuery . " WHERE meet_description LIKE '%". $_POST['search']. "%' "; } $strQuery = $strQuery . ";"; //echo $strQuery . "</br>"; $check_log = mysql_query($strQuery) or die (mysql_error()); $num = mysql_num_rows($check_log); if($num <=0) { } $n=0;//ให้ค่า n= 0 while ($objResult = mysql_fetch_array($check_log)){ ?> <tr> <td align="center"><?=$objResult["agen"];?> <?=$objResult["meeting_name"];?></td> <td align="center"><?=$objResult["date_meet_up"];?></td> <td align="center"><?=$objResult["agenda"];?></td> <td align="center"><?=$objResult["meet_no"];?></td> <td align="center"><?=$objResult["meet_description"];?></td> <td align="center"><a href="add_meeting.php?do=edit&sid=<?php echo $objResult["meeting_id"]; ?>">แก้ไข</a> | <a href="show_meeting.php?do=delete&sid=<?php echo $objResult["meeting_id"]; ?>">ลบ</a></td> </tr> <?php $a++; } ?> </table> </table> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง