Re: [PHP] money print out with two digits after , e.g. 49,00

2001-05-08 Thread heinisch
At 08.05.01 16:34, you wrote: >I want to changes 49.4 ---> 49,4 > 49,4 > 49,40 Try this "; ?> Oliver -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To cont

RE: [PHP] money print out with two digits after , e.g. 49,00

2001-05-08 Thread Johnson, Kirk
Try number_format() http://www.php.net/manual/en/function.number-format.php Kirk > -Original Message- > From: Ramiro Radjiman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 08, 2001 8:35 AM > To: [EMAIL PROTECTED] > Subject: [PHP] money print out with two digits aft

Re: [PHP] money print out with two digits after , e.g. 49,00

2001-05-08 Thread Neill Robins
Tuesday, May 08, 2001, 10:34:51 AM, Ramiro Radjiman wrote: RR> I want to changes 49.4 ---> 49,4 RR> 49,4 > 49,40 RR> the first rule is done with the code RR> $totaal=49.4; RR> $totaal=str_replace(".",",",$totaal); RR> how can i do the second row?? RR

[PHP] money print out with two digits after , e.g. 49,00

2001-05-08 Thread Ramiro Radjiman
I want to changes 49.4 ---> 49,4 49,4 > 49,40 the first rule is done with the code $totaal=49.4; $totaal=str_replace(".",",",$totaal); how can i do the second row?? please help. greets Ramiro -- PHP General Mailing List (http://www.php.net/) To