File "setCurrency-20241115055321.php"
Full Path: /home/krishnamexports/public_html/ajax/setCurrency-20241115055321.php
File size: 244 bytes
MIME-type: text/x-php; charset=us-ascii
Charset: utf-8
<?php
session_start();
include('../config/database.php');
$currencyType = $_GET['currencyType'];
$_SESSION['currency'] = $currencyType;
$arr = array("status"=>1, 'currencyType'=>$currencyType);
echo json_encode($arr);
?>