Today’s max temp
-
Hi! In the daily forecast, I would like to show today’s max and min temp (like the example on Marbella tennis weather). How do I do that?
This is how it looks now:
if ( is_numeric( ${'day_temp_high_' . $unit_c_f} ) ) { if ( ${'day_temp_high_' . $unit_c_f} != '-99' ) { $return .= ${'day_temp_high_' . $unit_c_f} . "/"; } else { $return .= "min "; } }
I would like something like this:
if ( is_numeric( ${'day_temp_high_' . $unit_c_f} ) ) { $return .= ${'day_temp_high_' . $unit_c_f} . "/"; }
But for some reason today’s max temp is -99…
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Today’s max temp’ is closed to new replies.