1
I have a variable with a string format value:
15000
I need to run that figure against another one in the database. It turns out that in this string that comes with the value, the last two digits are always related to the cents. That is, the value above is 150.00
How can I format the value?
Ex: variable with value of 124589 = 1245.89
Isn’t it just split by 100? https://ideone.com/quSxQ8
– Woss