|
17.04.2006, 03:43
обратите внимание у вас изначально код не правильный он должен быть таким:
PHP код:
if ( !empty($HTTP_POST_VARS['postorder']) || !empty($HTTP_GET_VARS['postorder']) ) { $post_order = (!empty($HTTP_POST_VARS['postorder'])) ? htmlspecialchars($HTTP_POST_VARS['postorder']) : htmlspecialchars($HTTP_GET_VARS['postorder']); if (!eregi("^((asc)|(desc))$",$post_order) ) { 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'; }
|
|