jb-data.de/scripts/ajax/ue_sau.php
2025-08-11 22:23:30 +02:00

14 lines
No EOL
529 B
PHP

<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<?php
//echo'<pre>'; print_r($anlage); echo'</pre>';
$data = json_decode(file_get_contents('http://api.openweathermap.org/data/2.5/weather?q=Leipzig,DE&units=metric&lang=de&APPID=e1fbd5096c088db7a388f3a582c99b02'));
$template->assign('night', $night);
$template->assign('info1', date("H:i",$data->sys->sunset));
$template->assign('info2', date("H:i",$data->sys->sunrise));
$template->assign('content', 'tpl/ajax/ue_sau.tpl');
?>