Fatal error: Call to undefined function money_format()

if you are using windows based system then you will not have this function available.

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

(this has been pointed out by Mike W in comments as well)

http://www.php.net/manual/en/function.money-format.php

Leave a Comment