28.06.2018, 11:23
Ich habe es jetzt mit den richtigen Pfaden umsetzen können.
Leider sieht das Ergebnis nicht so wie gewollt aus.
https://boulderrausch.de/files/lastpost_mybb.php
Code:
<?php
define("IN_MYBB", 1);
require("../../MyBB/global.php");
global $db, $mybb; // Trim this list of global vars, if you want to.
$tlimit = 5; // How many titles you want
$query = $db->query("SELECT * FROM ".TABLE_PREFIX."threads ORDER BY `tid` DESC LIMIT $tlimit");
$list = '';
while($fetch = $db->fetch_array($query))
{
$list .= " | <strong><a href=\"{$mybb->settings['bburl']}/showthread.php?tid={$fetch['tid']}\" target=\"_blank\">".htmlspecialchars_uni($fetch['subject'])."</a></strong>";
}
//output
echo "<marquee direction='right' scrollamount='3'>" . $list . "</marquee></p>";
?>
Leider sieht das Ergebnis nicht so wie gewollt aus.
https://boulderrausch.de/files/lastpost_mybb.php