si tengo este número:
6,465.00
como lo pongo asi:
6465.00?
![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
Estuve probando con number_format($Num,'') y lo que me devuelve es el 6 solamente
![Negando](http://static.forosdelweb.com/fdwtheme/images/smilies/negar.gif)
Tuve que hacer lo siguiente:
Código PHP:
for ($i = 0; $i <= strlen($Num); $i++) {
if ($Num[$i] != ",") {
echo $Num[$i];
}
}
![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)