Просмотр файла weather_ua.php

Размер файла: 2.17Kb
<?php
header("Content-Type: text/html; charset=utf-8");
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Погода в Украине '.date("d.m.Y",time()).'
</title>
<style type="text/css">
body{
background-color:#029;
color:#0ff;
}
center{
padding: 5px;
background-color:#ff0;
color:#f00;
font-weight:bold;
border: 2px solid #0f0;
}
a:visited{
color:#00f;
}
a {
color:orange;
}
</style>
</head>
<body>';
if (empty($region) and empty($station))
{
$file=file_get_contents("http://wap.podrobnosti.ua/utf/weather");
$file=explode('<p align="center">',$file);
$file=$file[1];
$file=str_replace('strong','center',$file);
$file=str_replace('</center>','<br/></center>',$file);
$file=str_replace('</p>','',$file);
$file=str_replace('<p>','',$file);
$file=explode('&nbsp;',$file);
$file=$file[0];
$file=str_replace('region.wml','',$file);
$file=str_replace('?','?region=',$file);
echo $file;
//echo htmlspecialchars($file);
}
if (!empty($region) and empty($station))
{
$file=file_get_contents("http://wap.podrobnosti.ua/utf/weather/region.wml?$region");
$file=explode('<p align="center">',$file);
$file=$file[1];
$file=str_replace('strong','center',$file);
$file=str_replace('</p>','',$file);
$file=str_replace('<p>','',$file);
$file=str_replace('</center>','<br/></center>',$file);
$file=explode('&nbsp;',$file);
$file=$file[0];
$file=str_replace('station.wml','',$file);
$file=str_replace('?','?station=',$file);
echo $file;
//echo htmlspecialchars($file);
echo '- <a href="?">К областям</a><br/>';
}
if (empty($region) and !empty($station))
{
$file=file_get_contents("http://wap.podrobnosti.ua/utf/weather/station.wml?$station");
$file=explode('Меню</a><br/>',$file);
$file=$file[1];
$file=str_replace('strong','center',$file);
$file=str_replace('/p','br/',$file);
$file=str_replace('<p>','',$file);
$file=str_replace('&nbsp;',' ',$file);
$file=explode('<br/><anchor>',$file);
$file=$file[0];
echo $file;
//echo htmlspecialchars($file);
echo '- <a href="'.$HTTP_REFERER.'">&lt;&lt;&lt; Назад</a><br/>';
echo '- <a href="?">К областям</a><br/>';
}
echo '<center><a href="http://ketti.skywap.mobi">Главная</a><br/></center>
</body>
</html>';
?>