25.12.2005, 16:45
Ich habe mal ein Modul für Joomla/Mambo programmiert!
Nähre informationen unter http://www.joomlaportal.de/veroeffentlic...post112456
Nähre informationen unter http://www.joomlaportal.de/veroeffentlic...post112456
<?php
$number=5;
$max=50;
$name=1;
$link=1;
$host = localhost;
$user = root;
$pass = *******;
$db = *********;
$url = //Url zum Forum;
$connect = mysql_connect( $host, $user, $pass );
if ( ! $connect ) {
die( "Konnte Verbindung zur Datenbank nicht aufbauen: ".mysql_error() );
}
if ( !mysql_select_db($db) ) {
echo "<p>Auswahl der Datenbank zur Zeit nicht moeglich:" .mysql_error()."</p>" ;
}
$sql = "SELECT * FROM `mybb_threads` ORDER BY lastpost DESC LIMIT $number";
$result = mysql_query($sql);
if ( !$result ) {
die( "Fehler bei der Ausführung der Abfrage:" .mysql_error() );
}
echo "<ul class=\"latestnews\">\n";
while ( $row = mysql_fetch_array($result) ) {
$thread= $row['subject'];
$length=strlen($thread);
if ($length > $max) {
$thread=substr($thread, 0, $max).'...';
}
echo"<li class=\"latestnews\">";
echo"<a href=\"".$url."/showthread.php?tid=".$row['tid']."\">$thread</a>";
if ($name){
echo" von <strong>".$row['username']."</strong>";
}
echo"</li>\n";
}
echo "</ul>\n";
if ($link) {
echo "<a href=\"".$url."/search.php?action=getdaily\">Heutige Einträge</a>";
echo " <a href=\"".$url."/search.php?action=getnew\">Neue Einträge</a>";
}
?>
$sql = "SELECT * FROM `mybb_threads` WHERE visible = '1' ORDER BY lastpost DESC LIMIT $number";