Kryl
Заблокирован
Обратите внимание, если вы хотите заключить сделку с этим пользователем, что он заблокирован.
Так покрасивше будет ) , пробовал цвета добавить , что то не получилось ..
Код:
<?php
if (!defined('BB_ROOT')) die(basename(__FILE__));
require(INC_DIR .'class.weather.php');
if (!$weather = CACHE('bb_cache')->get('weather'))
{
$w_cfg['YaUrl'] = $bb_cfg['weather']['url'];
$w_cfg['YaCity'] = $userdata['user_city'];
$w_cfg['CacheTime'] = $bb_cfg['weather']['cache'];
$w_cfg['CachePath'] = CACHE_DIR."xml/{$userdata['user_city']}.xml";
$get = new Weather($w_cfg);
$wt = $get->OutWeather();
$weather =
"<div> ".$wt[1]."<br />Температура:".$wt[12]."°C <img src=".$wt[11]." /><br />Давление: ".$wt[13]." мм.рт.ст.<br />Влажность: ".$wt[14]."%</div>";
CACHE('bb_cache')->set('weather'.$userdata['user_city'].'', $weather, $bb_cfg['weather']['cache']*60);
}