The ini-set was a real help. I had 4 errors on the page that sped up my trouble shooting,
As for the number setting..
After some trial and error, I finally got it to work.. It still rounds, But when you are dealing with less then a gallon. This field doesn't need to be real accutate. This is why I also have ounces as well.
In my html tables. I had this:
<td class="main2"><?php echo $AmtShk_gal ?></td>
I changed the echo to this
<td class="main2"><?php echo" ".number_format($AmtShk_gal,2); ?></td>