ok, i am getting the same thing.
if the reset is pushed (which for the next 20-30 minutes would result in no rows being in the table) where the page is supposed to print the value for $Recent_Low, it doesn't print anything. just blank.
also, is there some weird thing about selecting with MAX ?
this is working
$result = mysql_query("SELECT MAX(`Value`) FROM `Process` WHERE `Sensor_ID` = '23120' ");
$Row = mysql_fetch_row($result);
$Max_Hi = $Row[0] ;
but this isn't
$result = mysql_query("SELECT MAX(`Value`) FROM `Process` WHERE `Sensor_ID` = '23130' ");
$Row = mysql_fetch_row($result);
$Max_Low = $Row[0] ;
it seems to just select a record, not the MAX, or MIN, or anything that i can see would cause the record to stand out for selection, but it gets selected everytime.
but when i sort the table in knoda, it is the one listed last. so MAX is 9.74 insead of 12.33
like MAX is giving me the alphabetical hi instead of the numeric Hi .
i think , now ,, that might be the problem in all of these.
it is a text field, VARCHAR(6)
so is that what is going on?
thanks for all your help by the way.
i dont know what i am missing or if the issues have anything to do with each other