如何获得金额?

时间:2013-12-04 19:21:36

标签: javascript php jquery ajax

我希望在收据上回显数字形式的金额作为单词。 我的代码如下所示:

<tr>
<td width="77" style="text-align: center; font-weight: bold;">Center</td>
<td width="210" style="text-align: center; font-weight: bold;">Amount</td>
</tr><tr><td width="33" style="text-align: center; font-weight: bold;">1</td>
<td width="132" style="text-align: center; font-weight: bold;">
  <?php echo    $row[11] ?></td>
<td width="77" style="text-align: center; font-weight: bold;">
 <?php echo $row[12] ?></td>
  <td width="210" style="text-align: center; font-weight: bold;">
  <?php echo $row[3]   ?></td></tr></table>    <tr>
  <td height="32">   <p>Received with thanks Rs.....</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
</td>

所以我希望Amount的值放在&#34;收到感谢Rs。

1 个答案:

答案 0 :(得分:0)

PHP 不支持(数字到单词)逻辑。

利用this

包括之后......重写你的代码,如

<p>Received with thanks Rs. <?php echo convert_number_to_word($row[3]); ?></p>