This topic is locked
[SOLVED]

 Number Format in SESSION

10/1/2013 12:28:34 AM
PHPRunner General questions
O
onlline author

Hi !
I use the following code
///////////////////////////////

PHP code snippet

echo $_SESSION['Total'];
works result 1000.00
////////////////////////////////
I would use number format expected result 1.000,00
Thanks in advanced

C
cgphp 10/1/2013
O
onlline author 10/1/2013



Take a look at this method http://php.net/manual/en/function.number-format.php


Hi Cristian ,
I tried
$value = $_SESSION["Saldo"];
echo $value = 'R$ ' . number_format($value,2,',','.');
returned an correct value 1.000,00
Thanks

Sergey Kornilov admin 10/2/2013

So, did it work?

O
onlline author 10/2/2013



So, did it work?


Yes it worked
Thanks !