I was describing an earlier query problem here, where my PHP queries were not picking up floats properly from MySql :
$SQL = "SELECT MyCol FROM MyTable WHERE MyCol = 6.8";
This would not work (the result set returned nothing) until I changed the data type for this column to decimal. Has anyone ever had this problem?
I am running PHP 4.0 and the latest version of MySql (3.23) on a WinMe platform.