'; $xmldoc = simplexml_load_string($xmlstr); print_r($xmldoc); $current_weather = $xmldoc->current_weather; $temperature = $current_weather->temperature; $current = $temperature->current; $attributes = $current->attributes(); $value = $attributes['value'][0]; echo $value . "\r\n"; $humidity = $current_weather->humidity; $attributes = $humidity->attributes(); $value = $attributes['value'][0]; echo $value . "\r\n"; ?>