Viewing file: v_pop_detail_qry.php (2.21 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div style="text-align:center;"> <fieldset style="margin:0 auto;width:90%;"> <legend>รายละเอียดการเปลี่ยนแปลงข้อมูล</legend> <?php if (isset($qu_udt)) { $row = $qu_udt->row(); $fd = preg_split('/[,]/',$row->udt_tx_field_name); $temp = preg_replace('/[#]/','',$row->udt_tx_new_val); $val = preg_split('/[,]/',$temp); $temp = preg_replace('/[#]/','',$row->udt_tx_old_val); $oval = preg_split('/[,]/',$temp); $len = count($fd); } ?> <table class="ver_table" style="width:80%;"> <caption><?php echo $row->udt_tx_describe;?></caption> <?php switch($row->udt_tx_opt) { case 'insert': ?> <col style="width:50%;"/> <col style="width:50%;"/> <thead> <tr> <th>ชื่อฟิลด์</th> <th>ข้อมูลที่ใส่เพิ่ม</th> </tr> </thead> <tbody> <?php for($i=0; $i < $len; $i++) { ?> <tr> <td><?php echo $fd[$i];?></td> <td><?php echo $val[$i];?></td> </tr> <?php } ?> </tbody> <?php break; case 'update': ?> <thead> <tr> <th>ชื่อฟิลด์ที่แก้ไข</th> <th>ข้อมูลเดิม</th> <th>ข้อมูลใหม่</th> </tr> </thead> <tbody> <?php for($i=0; $i < $len; $i++ ) { ?> <tr> <td><?php echo $fd[$i];?></td> <td><?php echo $oval[$i];?></td> <td><?php echo $val[$i];?></td> </tr> <?php } ?> </tbody> <?php break; case 'delete': ?> <thead> <tr> <th>ชื่อฟิลด์</th> <th>ข้อมูลที่ลบ</th> </tr> </thead> <tbody> <?php for($i=0; $i < $len; $i++ ) { ?> <tr> <td><?php echo $fd[$i];?></td> <td><?php echo $oval[$i];?></td> </tr> <?php } ?> </tbody> <?php break; case 'special': echo 'specical'; ?> <thead> <tr> <th>สคริปต์คำสั่ง</th> </tr> </thead> <tbody> <tr> <td><?php echo preg_replace('/[@@]/',' ',$row->udt_tx_old_val);?></td> </tr> </tbody> <?php break; } ?> </table> </fieldset> </div>
|