", $Row['post_text']); $Row['post_subject'] = StrTr($Row['post_subject'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE"); DB_Query('SELECT * FROM users WHERE user_id='.$Row2['poster_id']); $Row3 = DB_Row(); DB_Query('SELECT * FROM topics WHERE topic_id='.$Row2['topic_id']); $Row4 = DB_Row(); $Row4['topic_title'] = StrTr($Row4['topic_title'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE"); $Index = $Index + 1; DB_Load(); $Title = $Row4['topic_title'].'-'.$Row['post_subject']; $Content = Row['post_text']; $Date = $Row2['post_time']; DB_Select('news', '*', 'WHERE category='.$ForumCategory.' AND title="'.$Title.'" AND content="'.$Content.'" AND author="'.$Author.'" AND date="'.$Date.'"'); if(DB_NumRows() == 0) DB_Insert('news', array('category' => $ForumCategory, 'title' => $Title, 'content' => $Content, 'date' => ); } DB_Init('localhost', 'root', '', 'is'); // Get news from database by selected categories DB_Query('SELECT title,content,UNIX_TIMESTAMP(date),author FROM news WHERE 1'.$Where.' ORDER BY id DESC LIMIT 0,'.$NewsCount); while($Row = DB_Row()) { $Items[] = array( 'Title' => $Row['title'], 'Link' => 'http://centrala.zdechov.net/aktuality/index.php', 'Description' => $Row['content']." (".$Row['author'].")", 'Time' => $Row['UNIX_TIMESTAMP(date)'], ); } echo(GenerateRSS(array( 'Title' => 'Aktuality ZděchovNET: '.$CategoryName, 'Link' => 'http://centrala.zdechov.net/', 'Description' => 'Aktuality komunitní počítačové sítě ZděchovNET', 'WebmasterEmail' => 'robie@centrum.cz', 'Items' => $Items))); ?>