Hi all:
The money_format function does not do it for me. Is there a simple php function which appends the '$' symbol to a string value. Example
$money = 30 $money = some_php_function($money) echo $money
//should show $30
thanks
How 'bout...
$money = '$' . 30;
-- By-Tor.com It's all about the Rush http://www.by-tor.com
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php