ok

Mini Shell

Direktori : /home2/selectio/public_html/salemgovtitialumni.in/dashboard/admin/
Upload File :
Current File : /home2/selectio/public_html/salemgovtitialumni.in/dashboard/admin/customer-change-status.php

<?php require_once('header.php'); ?>

<?php
if(!isset($_REQUEST['id'])) {
	header('location: logout.php');
	exit;
} else {
	// Check the id is valid or not
	$statement = $pdo->prepare("SELECT * FROM tbl_customer WHERE cust_id=?");
	$statement->execute(array($_REQUEST['id']));
	$total = $statement->rowCount();
	if( $total == 0 ) {
		header('location: logout.php');
		exit;
	} else {
		$result = $statement->fetchAll(PDO::FETCH_ASSOC);							
		foreach ($result as $row) {
			$cust_status = $row['cust_status'];
		}
	}
}
?>

<?php
if($cust_status == 0) {$final = 1;} else {$final = 0;}
$statement = $pdo->prepare("UPDATE tbl_customer SET cust_status=? WHERE cust_id=?");
$statement->execute(array($final,$_REQUEST['id']));

header('location: customer.php');
?>

Zerion Mini Shell 1.0