RE: [PHP] Concerning number_format()

2003-11-06 Thread Ed Curtis
Duh. Yeah, works like a charm. Thanks, Ed On Thu, 6 Nov 2003, Jay Blanchard wrote: > [snip] > $price = "1234.567890"; > > $price = number_format($price, 2, '.', ''); > > echo $price; > > Returns 1234.567890 > > Should return 1234.57 correct? > [/snip] > > Use a new variable to hold the modif

RE: [PHP] Concerning number_format()

2003-11-06 Thread Jay Blanchard
[snip] $price = "1234.567890"; $price = number_format($price, 2, '.', ''); echo $price; Returns 1234.567890 Should return 1234.57 correct? [/snip] Use a new variable to hold the modified information $price = "1234.567890"; $newPrice = number_format($price, 2, '.', ''); echo $newPrice; -- P