Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ynormeco
/
.trash
/
ynormedemos
/
smadmin
/
pages
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//home/ynormeco/.trash/ynormedemos/smadmin/pages/change_status.php
<?php ob_start(); include("../inc/config.php"); $conn = connect_database(); $id = $_GET['id']; $status = $_GET['status']; $nstatus = ""; if($status == "Yes") { $nstatus = "No"; } else { $nstatus = "Yes"; } $query = mysqli_query($conn,"UPDATE `whats_app` SET `content` = '$nstatus' WHERE `id` = '$id' "); if(!$query) { echo mysqli_error($conn); } else { header('Location: ../whatsapp.php?delete=success'); } ob_end_flush(); ?>