Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
if (file_exists("forum/conf_global.php")) {
global $db;
include_once("forum/conf_global.php");
$prefix_ipb = $INFO['sql_tbl_prefix'];
$buffer = "";
$result = $db->sql_query("SELECT tid, posts, title, description, starter_name, last_poster_name, views FROM ".$prefix_ipb."topics ORDER BY last_post DESC LIMIT 0, 15");
while (list($tid, $posts, $title, $description, $starter_name, $last_poster_name, $views) = $db->sql_fetchrow($result)) {
$post_text = ($description) ? "".$title." - ".$description."" : $title;
$buffer .= "<tr class=\"bgcolor1\"><td><a href=\"forum/index.php?showtopic=$tid&view=getnewpost\" title=\"$post_text\">".cutstr($title, 50)."</a></td>"
."<td align=\"center\">".user_info($starter_name, 1)."</td>"
."<td align=\"center\">$views</td><td align=\"center\">$posts</td>"
."<td align=\"center\">".user_info($last_poster_name, 1)."</td></tr>";
}
$content .= "<table width=\"100%\" border=\"0\" cellpadding=\"3\" cellspacing=\"1\" class=\"sort\" id=\"sort_id\"><tr><th>"._NEWTOPICS."</th><th>"._POSTER."</th><th>"._VIEWS."</th><th>"._REPLIES."</th><th>"._LASTPOSTER."</th></tr>$buffer</table>";
} else {
$content = "";
}
Подскажите пожалуйста есть сайт sait.ru и форум forum.sait.ru(IPB 2.3) как вывести на сайте последние сообщения с форума?
Спасибо!