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