File "orderApproved-20241115064233.php"

Full Path: /home/krishnamexports/public_html/panel/vendors/orderApproved-20241115064233.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`=1, `approved_date`=Now() where `order_id` IN($order_id)");	

}

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

echo json_encode($arr);			

?>