Your IP : 10.1.73.149


Current Path : /home/bolconlineco/public_html/aaaaaa/demo/coordinator/
Upload File :
Current File : /home/bolconlineco/public_html/aaaaaa/demo/coordinator/forum_delete.php

<?php
 ob_start();
 ?>
  <?php include('../includes/connection/func.inc.php')?>
<?php

	     if(isset($_GET['id']))
		  {
			 
			$id=mysql_real_escape_string($_GET['id']);
				 $qq = "delete from tbl_reply where topic_Id='$id'";
				 $qq = mysql_query($qq) or die(mysql_error());
				 
				 $query = "delete from tbl_forum where id='$id'";
				 mysql_query($query) or die(mysql_error());
			
			header("location:fourm.php?msg");
			 exit();
		  }

?>