<?php
 
include("num_to_ar.php");
 
//the dollar is Masculine in ar
 
$ar_number= new convert_ar('1013212', "male");
 
echo $ar_number->convert_number(). ' دولار أميركي فقط لا غير';
 
echo "<br/>";
 
//the LP (ليرة لبنانية) is Feminin in ar
 
$ar_number= new convert_ar('99998712302', "female");
 
echo $ar_number->convert_number(). ' ليرة لبنانية فقط لا غير';
 
?>
 
 |