вопрос
Всем привет. Подскажите что нужно изменить в этом коде, что бы новости выводились из определенной категории?
Вот сам код:
Вот сам код:
<?php
if( !defined( 'DATALIFEENGINE' ) AND !LOGED_IN ) {
die( "Hacking attempt!" );
}
$rand_post = $db->super_query( "SELECT id, title, category, date, alt_name FROM " . PREFIX . "_post ORDER BY RAND() LIMIT 1" );
if( $config['allow_alt_url'] == "yes" ) {
if($config['seo_type'] ) {
if( $rand_post['category'] and $config['seo_type'] == 2 ) {
$full_link = $config['http_home_url'] . get_url( $rand_post['category'] ) . "/" . $rand_post['id'] . "-" . $rand_post['alt_name'] . ".html";
} else {
$full_link = $config['http_home_url'] . $rand_post['id'] . "-" . $rand_post['alt_name'] . ".html";
}
} else {
$full_link = $config['http_home_url'] . date( 'Y/m/d/', $rand_post['date'] ) . $rand_post['alt_name'] . ".html";
}
} else {
$full_link = $config['http_home_url'] . "index.php?newsid=" . $rand_post['id'];
}
header("Location: ".$full_link);
?>