Hi fellas,
I have a problem storing a decimal number in a MyISAM database,
when I create a DECIMAL (10,2) field in a table I have the following issue:
if I store the value 1.59 I can view 1.59
if I store the value 1.50 mysql shows 1.5, what I am trying to achieve is to store 1.50
When PHP connect to the database and display the numbers on the page the decimal position are not correct, 1.5 is not 1.50
Any idea?
Many many thanks for your help