Просмотр файла pages/themes.php

Размер файла: 977B
<?
#-------------------------------------------#
# Автор скрипта : -=Орёл=- (c)              #
# email         : [email protected]                #  
# icq           : 952-042                   #
# Скрипт распространяется бесплатно:)       #
# Пишу скрипты на заказ обращатся в icq     #                                         
#-------------------------------------------#
if ($_GET['tid'] == 'tem'){
$tem = $_POST['tem'];
$_SESSION['themes']=$tem;
header('Location: index.php');
}

echo '<form action="?tid=tem" method="post">';
echo '<select name="tem">';
$dir = opendir('themes');
while ($tem = readdir($dir)){
if ($tem == '.' || $tem == '..'){continue;}
echo '<option value="'.$tem.'" ';if ($_SESSION['themes']==$tem){echo 'selected="selected"';}echo '>'.$tem.'</option>';
}
echo '</select><br />';
echo '<input type="submit" value="Изменить"/><br />';
echo '</form>';
?>