Convert Number to Words in Indian currency format with paise value
Date Posted: 26-12-2017 In this Post we will explain convert the number to words in indian currency upto 10 crore. Step 1: Create new file name index.php and paste the following code. <?php /*Number format*/ function getIndianCurrencyToWords(float $number) { $decimal = round($number – ($no = floor($number)), 2) * 100; $hundred… Continue Reading Convert Number to Words in Indian currency format with paise value