I've an integer and I want to convert it to double, but I don't get any decimals.
This is how it is:
$num1 = 458;
settype($num1,"double");
print $num1; //Prints "458"
I can't seem to get the ".00" at the end. Am I using the wrong function??
Please help.
Ilir.