Файл: www/style/guest_css.php
Строк: 18
<?php
include '../config.php';
div('Цветовые темы');
$sortt=array(1,2,3,4,5,6,7,8,9,10);
$sorta=(isset($_SESSION['thm']) and in_array($_SESSION['thm'],$sortt))?$_SESSION['thm']:1;
$sorta=(isset($_GET['thm']) and in_array($_GET['thm'],$sortt))?$_GET['thm']:$sorta;
$_SESSION['thm']=$sorta;
echo '» <a href="../index.php">На главную</a><br/><br/>';
echo '<b>Цветовые темы</b><br/>';
echo '<div class="msg1">';
echo ($sorta==1)?'» <b>Blue</b><br/>':'» <a href="guest_css.php?thm=1">Blue</a><br/>';
echo ($sorta==2)?'» <b>Android</b><br/>':'» <a href="guest_css.php?thm=2">Android</a><br/>';
echo ($sorta==3)?'» <b>Techno</b><br/>':'» <a href="guest_css.php?thm=3">Techno</a><br/>';
echo ($sorta==4)?'» <b>Gold NY</b><br/>':'» <a href="guest_css.php?thm=4">Gold NY</a><br/>';
echo ($sorta==5)?'» <b>Fresh Lime</b><br/>':'» <a href="guest_css.php?thm=5">Fresh Lime</a><br/>';
echo ($sorta==6)?'» <b>Orange</b><br/>':'» <a href="guest_css.php?thm=6">Orange</a><br/>';
echo ($sorta==7)?'» <b>ButterFly</b><br/>':'» <a href="guest_css.php?thm=7">ButterFly</a><br/>';
echo ($sorta==8)?'» <b>Dark Gold</b><br/>':'» <a href="guest_css.php?thm=8">Dark Gold</a><br/>';
echo ($sorta==9)?'» <b>Зеленая</b><br/>':'» <a href="guest_css.php?thm=9">Зеленая</a><br/>';
echo ($sorta==10)?'» <b>Красная</b><br/>':'» <a href="guest_css.php?thm=10">Красная</a><br/>';
echo '</div>';
if($_GET['thm']){
header('Location: ../?rnd='.$rand);}
echo '</div>';
include '../foot.php';
echo '</div>';
?>