• File: remove_imagefaculty.php
  • Full Path: /home/u184720337/domains/upa.org.in/public_html/adminserver/remove_imagefaculty.php
  • Date Modified: 09/14/2023 7:42 AM
  • File size: 236 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php include("header.php"); 
 $id = $_GET['id'];
   //$imageNames = $_GET['image'];

 if($id)
 {
 	 $update = mysql_query("UPDATE `staff` SET `image`='' WHERE `id`='".$id."'");
 header("Location:edit_faculty.php?id=".$id.""); 
 }



?>