ESH/notes_new.php
2024-10-23 18:28:06 +05:30

20 lines
395 B
PHP

<?php
include('top.php');
?>
<?php
if(isset($acn) && $acn=='delete')
{
if($note_id)
//mysqli_query($conn,"UPDATE tbl_reply SET note_id = null WHERE id='".$note_id."'");
mysqli_query($conn,"DELETE FROM tbl_reply WHERE note_id ='".$note_id."'");
}
//echo "<script>location.replace('reply_new_list.php?msg=$msg')</script>";
echo "<script>location.href='reply_new_list.php'</script>";
?>