<table class="table table-bordered table-hover table-striped"> <thead> <tr> <th>ชื่อ</th> <th>หน่วย</th> <th>หมายเลข Serial</th> <th>รหัสพัสดุ</th> <th>จำนวนคงเหลือ</th> <th>รายละเอียด</th> <th>ราคา</th> <th>สถานะ</th> <th></th> </tr> </thead> <tbody> <?php while($rs=$result->fetch()){?> <tr> <td><?php echo $rs['name'];?></td> <td><?php echo $rs['unit_id'];?></td> <td><?php echo $rs['serial_no'];?></td> <td><?php echo $rs['item_code'];?></td> <td><?php echo $rs['in_stock'];?></td> <td><?php echo $rs['item_detail'];?></td> <td><?php echo $rs['price'];?></td> <td><?php echo $rs['item_status'];?></td> <td> <a href="<?php echo $_SERVER['PHP_SELF'];?>?action=edit&id=<?php echo $rs['id'];?>" class="btn btn-xs btn-warning">แก้ไข</a> <a href="<?php echo $_SERVER['PHP_SELF'];?>?action=delete&id=<?php echo $rs['id'];?>" class="btn btn-xs btn-danger" onclick="return confirm('แน่ใจนะว่าต้องการลบ?');">ลบ</a> </td> </tr> <?php }?> </tbody> </table>
select i.* , u.unit from item i left join unit u on u.id = i.unit_id
<?php $sql_item = "SELECT * FROM item i LEFT JOIN unit u ON u.id = i.unit_id WHERE i.in_stock>0 AND i.item_status=:item_status"; $result_item = $con->prepare($sql_item); $result_item->execute(array('item_status'=>'ใช้ได้')); ?> <div class="col-md-12"> <!-- ############### รายการข้อมูล ############# --> <h3>รายการพัสดุ/วัสดุ</h3> <div class="table-responsive"> <table class="table table-bordered table-hover table-striped"> <thead> <tr> <th>ชื่อ</th> <th>หน่วย</th> <th>หมายเลข Serial</th> <th>รหัสพัสดุ</th> <th>จำนวนคงเหลือ</th> <th>รายละเอียด</th> <th>ราคา</th> <th>สถานะ</th> <th></th> </tr> </thead> <tbody> <?php while($rs=$result->fetch()){?> <tr> <td><?php echo $rs['name'];?></td> <td><?php echo $rs['unit'];?></td> <td><?php echo $rs['serial_no'];?></td> <td><?php echo $rs['item_code'];?></td> <td><?php echo $rs['in_stock'];?></td> <td><?php echo $rs['item_detail'];?></td> <td><?php echo $rs['price'];?></td> <td><?php echo $rs['item_status'];?></td>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง