Call to undefined function money_format()

Here’s the reason why it may not work, probably you are having windows platform

“The function money_format() is only defined if the system has strfmon capabilities. For example, Windows does not, somoney_format() is undefined in Windows. “

found the above statement on php.net

white-space: nowrap not working in ie

For non-ie browsers like mozilla the below code will work:

<table>

<tr>

<td style=”white-space: nowrap”>text here</td>

</tr>

</table>

but the above will not work for ie browser, so this is what will work for ie :

<table>

<tr>

<td><span  style=”white-space: nowrap”>text here</span></td>

</tr>

</table>

Follow

Get every new post delivered to your Inbox.