<script type="text/javascript"> function func(url){ if (confirm("Delete")) { window.open(url); } else { false; } } </script> <!DOCTYPE html> <html> <head> <title></title> </head> <body> <table border=1> <tr> <th>id</th> <th>name</th> </tr> <?php $select = "select * from test"; $qu = mysql_query($select); while ($re = mysql_fetch_array($qu)) { $id = $re["id"]; ?> <tr> <td><?php echo $re["id"]; ?></td> <td><?php echo $re["name"]; ?></td> <td><a href="" onclick="func('btn.php?id=<?php echo $id; ?>&click=true');">delete</a></td> </tr> <?php } ?> </table> <?php if ($_GET["click"] == true) { $id = $_GET['id']; $delete = "delete from test where id = '$id'"; mysql_query($delete); } ?>
if ($_GET["click"] == true) { $id = $_GET['id']; $delete = "delete from test where id = '$id'"; if(mysql_query($delete)){ header("location:$_SERVER[HTTP_REFERER]"); } }
<a href="<?php echo $_SERVER["PHP_SELF"];?>?Action=Del&delid=<?=$row['barcodeEx'];?>">ลบ</a> //*** Delete Condition ***// if($_GET["Action"] == "Del") { try { $delm = htmlspecialchars($_GET['delid']); $del = $db->prepare("DELETE FROM tbl_extra_media WHERE barcodeEx = :barcodeEx"); $del->bindParam(':barcodeEx',$delm, PDO::PARAM_STR); $del->execute(); } catch(PDOException $e) { echo 'ERROR: ' . $e->getMessage(); } //header("location:$_SERVER[PHP_SELF]"); //exit(); }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง