Hello forums
I’m trying to do the following calculations in php:
(1.004167)180 = 2.11383
In an actual calculator I used the xy key to get the 2.11383.
Question what is the php function for (number)n
I badly need it for a mortgage calculator tnx
Hello forums
I’m trying to do the following calculations in php:
(1.004167)180 = 2.11383
In an actual calculator I used the xy key to get the 2.11383.
Question what is the php function for (number)n
I badly need it for a mortgage calculator tnx
Nevermind I got it
echo pow(1.004167, 180);