PHP Classes

File: currency_symbols.php

Recommend this page to a friend!
  Classes of Harish Chauhan   Currency Symbols   currency_symbols.php   Download  
File: currency_symbols.php
Role: Example script
Content type: text/plain
Description: example
Class: Currency Symbols
Get the symbols of currency of a given country
Author: By
Last change:
Date: 18 years ago
Size: 215 bytes
 

Contents

Class file image Download
<?php
   
require_once("currency_symbols.inc.php");
   
$curr=new CurrencySymbols;
    if(!empty(
$_REQUEST['curr']))
       
$curr->getCurrencySymbol(strtoupper($_REQUEST['curr']));
    else
       
$curr->getCurrencySymbol();
?>