File "orderPacked.php"

Full Path: /home/krishnamexports/public_html/panel/css/orderPacked.php
File size: 375 bytes
MIME-type: text/x-php; charset=us-ascii
Charset: utf-8

<?php

include('../../config/database.php');

$orderInvoice = array();			

$order_id      = $_POST['order_id'];	

if(!empty($order_id))

{

		mysqli_query($cn,"update `tbl_order` SET `status`=2, `packed_date`=Now() where `order_id` IN($order_id)");	

}

$arr    = array("status"=>1, 'SuccessMsg'=>"Order Status Update SuccessFully");

echo json_encode($arr);			

?>