Login   Register  
PHP Classes
elePHPant
Icontem

File: currency_symbols.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-08-22 04:59
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();
?>