• File: courses_delete.php
  • Full Path: /home/u184720337/domains/upa.org.in/public_html/adminserver/courses_delete.php
  • Date Modified: 09/14/2023 7:42 AM
  • File size: 308 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php include("header.php");?>
		<?php $id = $_GET['id']; 
		 if($id)
		 {
		 		  $del = mysqli_query($mysqli, "UPDATE `courses_pages` SET `status`=0 where `id`='".$id."'");
				?>
				<script>
					alert("Delete Data Sucessfully");
				window.location.href='manage_courses.php';</script>
				<?php
		 }?>