Jump to content

help fusion v7


Red beanie

Recommended Posts

v tomto je dizkuze z forum ale chci přijít na to jak je dát vedle sebe abych tam mohl dat další věci :@

dsafsdsf.png

 

opentable("");

 

echo "

Novinky
\n";

$result = dbquery(

"SELECT ta.*,tac.* FROM fusion_news ta

INNER JOIN fusion_news_cats tac ON ta.news_cat=tac.news_cat_id

ORDER BY news_datestamp DESC LIMIT 0,5"

);

if (dbrows($result) != 0) {

while($data = dbarray($result)) {

$itemsubject = trimlink($data['news_subject'], 23);

echo "

»$itemsubject\n
";

}

} else {

echo "".$locale['global_078']."\n";

}

 

echo "

".$locale['global_021']."
\n";

$result = dbquery("

SELECT tt.forum_id, tt.thread_id, tt.thread_subject, tt.thread_lastpost FROM ".DB_THREADS." tt

INNER JOIN ".DB_FORUMS." tf ON tt.forum_id=tf.forum_id

WHERE ".groupaccess('forum_access')." ORDER BY thread_lastpost DESC LIMIT 5

");

if (dbrows($result)) {

while($data = dbarray($result)) {

$itemsubject = trimlink($data['thread_subject'], 23);

echo THEME_BULLET."» $itemsubject

\n";

}

} else {

echo "

".$locale['global_023']."
\n";

}

closetable();

 

Link to comment
Share on other sites

  • 1 year later...
Guest
This topic is now closed to further replies.
×
×
  • Create New...