HI neel
I want to convert integer value of variable to float ie. i am adding two variables and the addition is integer and i want convert it to float
eg:
$var1=30;
$var2=40;
$var3=$var1+$var2;
i want to display var3 as 70.00
please tell me how to do this
Thank you