File size: 1.95Kb
<?php
require_once ('../includes/start.php');
require_once ('../includes/functions.php');
require_once ('../includes/header.php');
include_once ('../themes/' . $config['themes'] . '/index.php');
show_title('site.png', 'Прогноз погоды');
$counter_file='counter_value.txt'; $counter=file($counter_file); $counter_value=$counter[0]; ++$counter_value; $file_counter_open=fopen($counter_file,'w'); fwrite($file_counter_open, $counter_value); fclose($file_counter_open);
echo'<div class="gmenu">Выбор страны.</div>';
echo '<div class="menu">
<hr/><a href="ru.php"><img src="img/ru.gif" alt="Погода_Россия"/> <b>Россия</b></a><hr/>
<a href="ua.php"><img src="img/ua.gif" alt="Погода_Украина"/> <b>Украина</b></a><hr/>
<a href="by.php"><img src="img/by.gif" alt="Погода_Беларусь"/> <b>Беларусь</b></a><hr/>
<a href="md.php"><img src="img/md.gif" alt="Погода_Молдова"/> <b>Молдова</b></a><hr/>
<a href="gr.php"><img src="img/gr.gif" alt="Погода_Грузия"/> <b>Грузия</b></a><hr/>
<a href="am.php"><img src="img/am.gif" alt="Погода_Армения"/> <b>Армения</b></a><hr/>
<a href="kz.php"><img src="img/kz.gif" alt="Погода_Казахстан"/> <b>Казахстан</b></a><hr/>
<a href="lv.php"><img src="img/lv.gif" alt="Погода_Латвия"/> <b>Латвия</b></a><hr/>
<a href="lt.php"><img src="img/lt.gif" alt="Погода_Литва"/> <b>Литва</b></a><hr/>
<a href="es.php"><img src="img/es.gif" alt="Погода_Эстония"/> <b>Эстония</b></a><hr/>
<a href="tj.php"><img src="img/tj.gif" alt="Погода_Таджикистан"/> <b>Таджикистан</b></a><hr/>
</div>';
#Ссылка на главную
echo '<img src="../images/img/homepage.gif" alt="image" /> <a href="../index.php?' . SID . '">На главную</a>';
include_once ('../themes/' . $config['themes'] . '/foot.php');
?>