|
Server IP : 217.21.85.138 / Your IP : 216.73.216.103 Web Server : LiteSpeed System : Linux in-mum-web906.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u915722082 ( 915722082) PHP Version : 7.4.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u915722082/domains/vethathirimaharishismartschool.com/public_html/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include "db.php";
session_start();
if(!isset($_SESSION["aid"])){
echo "<script>alert('Invalid');window.open('index.php','_self')</script>";
exit();
}
if(isset($_GET['did']) && is_numeric($_GET['did']) && isset($_GET['id']) && is_numeric($_GET['id'])) {
$did = $_GET['did'];
$eid = $_GET['id'];
// Prepare delete statement to prevent SQL injection
$sql = "DELETE FROM winner WHERE WID=? AND EID=?";
$stmt = $connect->prepare($sql);
$stmt->bind_param("ii", $did, $eid);
$stmt->execute();
// Check if deletion was successful
if($stmt->affected_rows > 0) {
echo "<script>alert('Record Deleted');window.open('event_winners.php?id=$eid','_self')</script>";
} else {
echo "<script>alert('Failed to delete record');window.open('event_winners.php?id=$eid','_self')</script>";
}
// Close statement
$stmt->close();
} else {
echo "<script>alert('Invalid Parameters');window.open('index.php','_self')</script>";
}
// Close connection
$connect->close();
?>