Current Weather"; echo "

Location

"; echo "City: ". $weather->location->name; echo "
"; echo "Region: ".$weather->location->region; echo "
"; echo "Country: ".$weather->location->country; echo "
"; echo "Lat: ".$weather->location->lat." , Lon:".$weather->location->lon; echo "

Temprature

"; echo "
"; echo "Temperature (°C): " . $weather->current->temp_c; echo "
"; echo "Feels like (°C)". $weather->current->feelslike_c; echo "
"; echo "
"; echo "Temperature (°F): " . $weather->current->temp_f; echo "
"; echo "Feels like (°F)". $weather->current->feelslike_f; echo "
"; echo "Condition: " . $weather->current->condition->text; echo "

Wind

"; echo $weather->current->wind_mph." mph
"; echo $weather->current->wind_kph." kph
"; echo $weather->current->wind_degree."° " . $weather->current->wind_dir."
"; echo "Humidity: ".$weather->current->humidity; echo "


"; echo "Updated On: ".$weather->current->last_updated; ?>