PHP Classes

File: fx/index.php

Recommend this page to a friend!
  Classes of Ssaurz Acharya   PHP Live Forex Rate API   fx/index.php   Download  
File: fx/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Live Forex Rate API
REST API to return exchange rates from other APIs
Author: By
Last change:
Date: 7 years ago
Size: 192 bytes
 

Contents

Class file image Download
<?php
require_once 'RestApi.php';
if(isset(
$_REQUEST["request"]))
{
$api = new RestApi($_REQUEST["request"]);
echo
$api->executeApi();
}
else
{
header("Location: http://www.sauryatech.com");
}