File "setCurrency.php"

Full Path: /home/krishnamexports/public_html/ajax/setCurrency.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);			

?>