Hi....
When my script does calculations, I have very small floating numbers... One example is I have '0.00008' but PHP keeps this variable as '8E-05', nothing wrong there.. Just when I store it in a database column which is defined as: decimal(10,6), it stores '8.000000'....
I guess it handles '8E-05' as a string when it stores it, thus clipping it into '8', how do I make it handle it as a float number???
Thanks