| Current File : /var/www/uim.org.in/limsysuim/delete_user.php |
<?php
include('include/dbcon.php');
$get_id=$_GET['user_id'];
mysqli_query($conn,"delete from user where user_id = '$get_id' ")or die(mysqli_error());
header('location:user.php');
?>