[PHP] How to get a double to show the .00 in a hole number

2001-08-31 Thread Robert J Collins
I am trying to get a double data type to display the .00 in a "hole" dollar amount (i.e. 432.00 not 432 or $432.00 not $432). Can anyone tell me how to do this? Thanks, Robert J Collins -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

RE: [PHP] How to get a double to show the .00 in a hole number

2001-08-31 Thread Boget, Chris
> I am trying to get a double data type to display the .00 in a > "hole" dollar amount (i.e. 432.00 not 432 or $432.00 not $432). > Can anyone tell me how to do this? printf(); or sprintf(); is your friend Chris

Re: [PHP] How to get a double to show the .00 in a hole number

2001-08-31 Thread Andrey Hristov
lt;[EMAIL PROTECTED]> Sent: Friday, August 31, 2001 10:50 PM Subject: [PHP] How to get a double to show the .00 in a hole number > I am trying to get a double data type to display the .00 in a "hole" dollar > amount (i.e. 432.00 not 432 or $432.00 not $432). > > Ca