One temperature
PHP code
<?php
// Loading the XML file
$xml = simplexml_load_file("http://88.87.29.196:8002/status.xml");
echo "<h1>";
foreach($xml->children() as $sensor)
{
if ($sensor->name == "Office inside" )
{
echo $sensor->name." <br />";
echo $sensor->temp." <br />";
}
}
echo "</h1>";
?>