Current File : //proc/self/root/proc/thread-self/root/home/vedfinancials/www/superadmin/delete-event-enq-data.php |
<?php
include'cn.php';
$uid = $_GET['id'];
// Delete Record From User Profile
$cr="DELETE FROM `eventenquiry` Where id='$uid'";
// echo json_encode($cr);
$crr = mysqli_query($con,$cr);
if($crr){
header('Location:event-listing-enquiry-data.php');
}else{
echo "<script type='text/javascript'>alert(\"Something Went Wrong..\")
location.href='event-listing-enquiry-data.php';
</script>";
}
?>