<? ob_start(); session_start(); include("connect.php"); $query = "UPDATE service2 SET status='pass' WHERE id_ser='".$_GET['status']."'"; mysql_query($query)or die(mysql_error()); header("Location: report_laundry.php"); ?>
$query = "UPDATE service2 SET status='pass'
$query = "UPDATE service2 SET status='เสร็จสิ้น'
<br /><div class="title_h" ><strong>รายการของลูกค้า</strong></div><br /> <table width="80%" border="1" cellspacing="2" cellpadding="2" background="img/r1_4.gif"> <tr> <td style="width:65px;"><div align="center">ลำดับที่</div></td> <td style="width:60px";><div align="center">ฃื่อผู้ใช้</div></td> <td><div align="center">วันที่ส่งซัก</div></td> <td><div align="center">วันที่มารับ</div></td> <td><div align="center">ราคา (บาท)</div></td> <td><div align="center">สถานะ</div></td> <td ><div align="center">พิมพ์</div></td> <td><div align="center">ลบ</div></td> </tr> <? include ("connect.php"); $sql_show = "select * from service2 where status ='pass'"; $result_show = mysql_query($sql_show) or die(mysql_error());$i=0; while($row_show = mysql_fetch_array($result_show)) { ?> <tr> <td style="width:45px;"align="center"><?=++$i?></td> <td align="center"><?=$row_show['id_name']?></td> <td align="center"><?=$row_show['datein']?></td> <td align="center"><?=$row_show['dateout']?></td> <td align="right"><?=$row_show['total']?>.00 บาท </td> <td align="center"><?=$row_show['status'] ?></td> <td><div align="center"><a href="print_bill.php?id_ser=<?=$row_show['id_ser']?>" target="_blank"><img src="img/Avosoft-Warm-Toolbar-Print.ico"width="25" height="25" /></a></div></td> <td align="center"><a href="delete_laundry.php?del_id=<?=$row_show['id_user']?>"onClick="return confirm('ยืนยันการลบข้อมูล')"><img src="img/Delete.png" width="25" height="25" /></a></td> </tr> <? } ?> </table>
<? if($row_show['status']=="pass"){ echo "เสร็จสิ้น";?>
<?PHP //เปลี่ยนสถานะ if($_GET["Action"] == "Change"){ $dur_id = $_GET['dur_id']; $sql = "SELECT * FROM duration WHERE dur_id = '$dur_id'"; $result = mysql_query($sql); $show = mysql_fetch_array($result); if($show['dur_status'] == "0"){ $dur_status = 1; }else{ $dur_status = 0; } $sql = "UPDATE duration SET dur_status = '$dur_status' WHERE dur_id = '$dur_id'"; $result = mysql_query($sql); } ?>
<td><a href="duration.php?Action=Change&dur_id=<?=$show['dur_id'];?>" onclick="return confirm('ยืนยันการเปลี่ยนสถานะ')"><? if($show['dur_status']=='1'){ echo "<font color=\"red\">ปิด</font>";} else { echo "<font color=\"green\">เปิด</font>";}?></a></td>
<?PHP //เปลี่ยนสถานะ if($_GET["Action"] == "Change"){ $dur_id = $_GET['dur_id']; $sql = "SELECT * FROM duration WHERE dur_id = '$dur_id'"; $result = mysql_query($sql); $show = mysql_fetch_array($result); if($show['dur_status'] == "0"){ //ถ้าเป็น 0 ให้เปลี่ยนเป็น 1 $dur_status = 1; }else{ // ถ้าไม่ใช่เงือนไขแรกให้เปลี่ยนเป็น 0 $dur_status = 0; } $sql = "UPDATE duration SET dur_status = '$dur_status' WHERE dur_id = '$dur_id'"; $result = mysql_query($sql); } ?> //ข้างบนก็เปลี่ยนเป็นของคุณ //รับค่า action=change <br /><div class="title_h" ><strong>รายการของลูกค้า</strong></div><br /> <table width="80%" border="1" cellspacing="2" cellpadding="2" background="img/r1_4.gif"> <tr> <td style="width:65px;"><div align="center">ลำดับที่</div></td> <td style="width:60px";><div align="center">ฃื่อผู้ใช้</div></td> <td><div align="center">วันที่ส่งซัก</div></td> <td><div align="center">วันที่มารับ</div></td> <td><div align="center">ราคา (บาท)</div></td> <td><div align="center">สถานะ</div></td> <td ><div align="center">พิมพ์</div></td> <td><div align="center">ลบ</div></td> </tr> <? include ("connect.php"); $sql_show = "select * from service2 where status ='pass'"; $result_show = mysql_query($sql_show) or die(mysql_error());$i=0; while($row_show = mysql_fetch_array($result_show)) { ?> <tr> <td style="width:45px;"align="center"><?=++$i?></td> <td align="center"><?=$row_show['id_name']?></td> <td align="center"><?=$row_show['datein']?></td> <td align="center"><?=$row_show['dateout']?></td> <td align="right"><?=$row_show['total']?>.00 บาท </td> <td><a href="duration.php?Action=Change&dur_id=<?=$show['dur_id'];?>" onclick="return confirm('ยืนยันการเปลี่ยนสถานะ')"><? if($show['dur_status']=='1'){ echo "<font color=\"red\">ปิด</font>";} else { echo "<font color=\"green\">เปิด</font>";}?></a></td> // href เป็นชื่อเพจนี้ พวก id ที่ส่งก็เปลี่ยนนะ เป็นของคุณ มันจะส่ง action=change และ id ไป <td><div align="center"><a href="print_bill.php?id_ser=<?=$row_show['id_ser']?>" target="_blank"><img src="img/Avosoft-Warm-Toolbar-Print.ico"width="25" height="25" /></a></div></td> <td align="center"><a href="delete_laundry.php?del_id=<?=$row_show['id_user']?>"onClick="return confirm('ยืนยันการลบข้อมูล')"><img src="img/Delete.png" width="25" height="25" /></a></td> </tr> <? } ?> </table>
<?PHP //เปลี่ยนสถานะ if($_GET["Action"] == "Change"){ $id_ser = $_GET['id_ser']; $sql = "SELECT * FROM service2 WHERE id_ser = '$id_ser'"; $result = mysql_query($sql); $row_show = mysql_fetch_array($result); if($row_show['status'] == "pass"){ $status = "เสร็จสิ้น"; }else{ $status = "pass"; } $sql = "UPDATE service2 SET status = '$status' WHERE id_ser = '$id_ser'"; $result = mysql_query($sql); } ?> <br /><div class="title_h" ><strong>รายการของลูกค้า</strong></div><br /> <table width="80%" border="1" cellspacing="2" cellpadding="2" background="img/r1_4.gif"> <tr> <td style="width:65px;"><div align="center">ลำดับที่</div></td> <td style="width:60px;"><div align="center">ฃื่อผู้ใช้</div></td> <td><div align="center">วันที่ส่งซัก</div></td> <td><div align="center">วันที่มารับ</div></td> <td><div align="center">ราคา (บาท)</div></td> <td><div align="center">สถานะ</div></td> <td ><div align="center">พิมพ์</div></td> <td><div align="center">ลบ</div></td> </tr> <? include ("connect.php"); $sql_show = "select * from service2 where status ='pass'"; $result_show = mysql_query($sql_show) or die(mysql_error());$i=0; while($row_show = mysql_fetch_array($result_show)) { ?> <tr> <td style="width:45px;"align="center"><?=++$i?></td> <td align="center"><?=$row_show['id_name']?></td> <td align="center"><?=$row_show['datein']?></td> <td align="center"><?=$row_show['dateout']?></td> <td align="right"><?=$row_show['total']?>.00 บาท </td> <td><a href="<?=$_SERVER["PHP_SELF"];?>?Action=Change&id_ser=<?=$row_show['id_ser'];?>" onclick="return confirm('ยืนยันการเปลี่ยนสถานะ')"><? if($row_show['status']=='pass'){ echo "PASS";} else { echo "เสร็จสิ้น";}?></a></td> <td><div align="center"><a href="print_bill.php?id_ser=<?=$row_show['id_ser']?>" target="_blank"><img src="img/Avosoft-Warm-Toolbar-Print.ico"width="25" height="25" /></a></div></td> <td align="center"><a href="delete_laundry.php?del_id=<?=$row_show['id_user']?>"onClick="return confirm('ยืนยันการลบข้อมูล')"><img src="img/Delete.png" width="25" height="25" /></a></td> </tr> <? } ?> </table>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง