BAWANG GORENG
/
home
/
ecommerceavenue
/
ecommerceavenue.com
/
public_html
/
couronne205
/
tvchannels
/
logs
/
Nama File / Folder
Size
Action
_notes
--
NONE
config.php
0.489KB
Hapus
Edit
Rename
delete.php
2.585KB
Hapus
Edit
Rename
display_logs.php
3.986KB
Hapus
Edit
Rename
index.php
5.473KB
Hapus
Edit
Rename
<=Back
<?php $db_table_name = "channel_number_logs"; $title = "Delete Record / TV Channels Logs"; // Process delete operation after confirmation if(isset($_POST["id"]) && !empty($_POST["id"])){ // Include config file require_once "config.php"; // Prepare a delete statement $sql = "DELETE FROM " . $db_table_name . " WHERE id = ?"; if($stmt = mysqli_prepare($link, $sql)){ // Bind variables to the prepared statement as parameters mysqli_stmt_bind_param($stmt, "i", $param_id); // Set parameters $param_id = trim($_POST["id"]); // Attempt to execute the prepared statement if(mysqli_stmt_execute($stmt)){ // Records deleted successfully. Redirect to landing page header("location: index.php"); exit(); } else{ echo "Oops! Something went wrong. Please try again later."; } } // Close statement mysqli_stmt_close($stmt); // Close connection mysqli_close($link); } else{ // Check existence of id parameter if(empty(trim($_GET["id"]))){ // URL doesn't contain id parameter. Redirect to error page header("location: error.php"); exit(); } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title><?php echo $title; ?></title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <style> .wrapper{ width: 600px; margin: 0 auto; } </style> </head> <body> <div class="wrapper"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <h2 class="mt-5 mb-3"><?php echo $title; ?></h2> <form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post"> <div class="alert alert-danger"> <input type="hidden" name="id" value="<?php echo trim($_GET["id"]); ?>"/> <p>Are you sure you want to delete record #<?php echo trim($_GET["id"]); ?>?</p> <p> <input type="submit" value="Yes" class="btn btn-danger"> <a href="index.php" class="btn btn-secondary">No</a> </p> </div> </form> </div> </div> </div> </div> </body> </html>
Liking