in reply to printf in if-statement
print "julday >>>$julday<<<\n"; print "julday_old >>>$julday_old<<<\n";
Are these values integers, or are they floating point values?
Isn't...
if(! ($julday == $julday_old)){
the same as...?
if ($julday != $julday_old){
|
|---|