G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> </head> <body> <?php include('config.php'); $id = filter_input(INPUT_GET, 'id'); $cid = $_GET['cid']; $js->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $result11 = $js->prepare('DELETE FROM `hotelreservations` WHERE `id` = :id '); $result11->bindParam(':id', $id); $result11->execute(); if ($result11) { $f = 1; } else { print_r($js->errorInfo()); } if($f == 1) { ?> <script type="text/javascript"> alert("Have Successfully Deleted The Repayment Made"); window.location = 'add_hotelsforcustomers.php?cid=<?php echo $cid?>'</script> <?php } ?> </body> </html>