<?php
# Copyright by Manuel
# Support www.ilch.de
defined ('main') or die ( 'no direct access' );
$query = "SELECT a.id, a.name, a.rep, c.erst as last, c.id as pid, c.time
FROM prefix_topics a
LEFT JOIN prefix_forums b ON b.id = a.fid
LEFT JOIN prefix_posts c ON c.id = a.last_post_id
WHERE (b.view >= ".$_SESSION['authright']." OR b.reply >= ".$_SESSION['authright']." OR b.start >= ".$_SESSION['authright'].")
ORDER BY c.time DESC
LIMIT 0,5";
echo '<table>';
$resultID = db_query($query);
while ($row = db_fetch_assoc($resultID)) {
$row['date'] = date('d.m.y - H:i',$row['time']);
$row['page'] = ceil ( ($row['rep']+1) / $allgAr['Fpanz'] );
echo '<tr><td valign="top"><b> » </b></td><td><a href="?forum-showposts-'.$row['id'].'-p'.$row['page'].'#'.$row['pid'].'" title="'.$row['date'].'">'.((strlen($row['name'])<18) ? $row['name'] : substr($row['name'],0,15).'...').'</span></a></td></tr>';
}
echo '</table>';
?>
Das steht in der box.php von Last Forum.. koennteste mir helfen was ich aendern muss?
<table border="0" cellpadding="0" cellspacing="0" bgcolor="#191919">
<tr><td><iframe bgcolor="#191919" text="#FFFFFF" src="http://www.gourl.de/tsvhosting/viewtsv.php?id=74092&type=full" marginheight="0" marginwidth="0" frameborder="0" width="150" height="500"></iframe></td></tr>
<tr><td><div class="right_nav_list"></td></tr>
</table>
Und das ist der Teil von dem TS-Viewer in der index.htm.. auch helfen pls.. ^^
Zuletzt modifiziert von moelli am 29.01.2008 - 11:55:38