ok
Direktori : /home2/selectio/www/salemgovtitialumni.in/dashboard/admin/ |
Current File : /home2/selectio/www/salemgovtitialumni.in/dashboard/admin/order-change-status.php |
<?php require_once('header.php'); ?> <?php if( !isset($_REQUEST['id']) || !isset($_REQUEST['task']) ) { header('location: logout.php'); exit; } else { // Check the id is valid or not $statement = $pdo->prepare("SELECT * FROM tbl_payment WHERE id=?"); $statement->execute(array($_REQUEST['id'])); $total = $statement->rowCount(); if( $total == 0 ) { header('location: logout.php'); exit; } } ?> <?php $statement = $pdo->prepare("UPDATE tbl_payment SET payment_status=? WHERE id=?"); $statement->execute(array($_REQUEST['task'],$_REQUEST['id'])); header('location: order.php'); ?>