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