Hi,
I am trying to get money to display correctly with the decimal points in the right place.
I have read the PHP manual, but just don't get it.
I want to do 2 things:
1: if someone types in 123.23 -> I want to remove the '.' (so it ends up being 12323) and store it in a database.
2: when I get it out of my database -> I want to add back in the '.' (so it ends up being 123.23 again) and display that.
How do I do that?
Thanks for you help