• File: delete_department.php
  • Full Path: /home/u184720337/domains/upa.org.in/public_html/adminserver/delete_department.php
  • Date Modified: 09/14/2023 7:42 AM
  • File size: 257 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php include("header.php");?>
		<?php $id = $_GET['id']; 
		 if($id)
		 {
		 		 $del = mysqli_query($mysqli,"delete from `department` where `id`='".$id."'");
				?>
				<script>
				window.location.href='manage_department.php';</script>
				<?php
		 }?>