Показать сообщение отдельно
rambam вне форума      Старый #13  
rambam
Участник
Регистрация: 04.03.2006
Сообщения: 76


Пожаловаться на это сообщениеОтветить с цитированием

Посмотреть профиль Отправить персональное сообщение для rambam Найти все сообщения от rambam Добавить rambam в список друзей  
15.04.2006, 20:37

PHP код:
 //
// Decide how to order the post display
//
if ( !empty($HTTP_POST_VARS['postorder']) || !empty($HTTP_GET_VARS['postorder']) )



if (
strtolower($post_order) !="asc" and strtolower($post_order) !="desc"




{
    
$post_order = (!empty($HTTP_POST_VARS['postorder'])) ? htmlspecialchars($HTTP_POST_VARS['postorder']) : htmlspecialchars($HTTP_GET_VARS['postorder']);
{
        
message_die(GENERAL_ERROR'Selected post order is not valid');
}
    
$post_time_order = ($post_order == "asc") ? "ASC" "DESC";
}
else
{
    
$post_order 'asc';
    
$post_time_order 'ASC';
}

$select_post_order '<select name="postorder">';
if ( 
$post_time_order == 'ASC' )
{
    
$select_post_order .= '<option value="asc" selected="selected">' $lang['Oldest_First'] . '</option><option value="desc">' $lang['Newest_First'] . '</option>';
}
else
{
    
$select_post_order .= '<option value="asc">' $lang['Oldest_First'] . '</option><option value="desc" selected="selected">' $lang['Newest_First'] . '</option>';
}
$select_post_order .= '</select>'