<HTML>




<?php
$section = file_get_contents('http://aagsolo.oa.uj.edu.pl/cgi-bin/lastData.pl');
echo $section;
$skytemp1 = strstr($section, 'clouds');
$skytemp2 = substr($skytemp1, 7);
$skytemp = strstr($skytemp2, '0000', true);
echo $skytemp;
$temp1 = strstr($section, 'temp');
$temp2 = substr($temp1, 5);
$temp = strstr($temp2, '0000', true);
echo $temp;
$wind1 = strstr($section, 'wind');
$wind2 = substr($wind1, 5);
$wind = strstr($wind2, 'rain', true);
echo $wind;
?>

<h2>
<?php 
echo $wind;
?>
</h2>


</HTML>
