| Current Path : /home/bolconlineco/public_html/coordinator/ |
| Current File : /home/bolconlineco/public_html/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();
}
?>