könnte mir jemand zeigen wie ich das:
hile ($r = db_fetch_assoc($erg1) ) { if ($r['geschlecht'] == 1) { $geschlecht = 'maennlich.jpg'; }elseif ($r['geschlecht'] == 2) { $geschlecht = 'weiblich.jpg'; }else{ $geschlecht = 'wurstegal.jpg'; } if ( file_exists($r['avatar'])) { $avatar = '<a href="index.php?user-details-'.$r['uid'].'"><img src="'.$r['avatar'].'" width="80px" height="80px" border="0" alt="'.$r['erst'].'" title="'.$r['erst'].'" style="float: left" /></a><br />'; }else{ $avatar = '<a href="index.php?user-details-'.$r['uid'].'"><img src="include/images/avatars/'.$geschlecht.'" width="80px" height="80px" border="0" alt="'.$r['erst'].'" title="'.$r['erst'].'" style="float: left" /></a><br />';
in die show_topic.php einbinde:
<?php # Copyright by: Manuel # Support: www.ilch.de defined ('main') or die ( 'no direct access' ); # check ob ein fehler aufgetreten ist. check_forum_failure($forum_failure); $title = $allgAr['title'].' :: Forum :: '.aktForumCats($aktForumRow['kat'],'title').' :: '.$aktForumRow['name']; $hmenu = $extented_forum_menu.'<a class="smalfont" href="index.php?forum">Forum</a><b> » </b>'.aktForumCats($aktForumRow['kat']).'<b> » </b>'.$aktForumRow['name'].$extented_forum_menu_sufix; $design = new design ( $title , $hmenu, 1); $design->header(); $limit = $allgAr['Ftanz']; // Limit $page = ( $menu->getA(3) == 'p' ? $menu->getE(3) : 1 ); $MPL = db_make_sites ($page , "WHERE fid = '$fid'" , $limit , '?forum-showtopics-'.$fid , 'topics' ); $anfang = ($page - 1) * $limit; $tpl = new tpl ( 'forum/showtopic' ); if ( $forum_rights['start'] == TRUE ) { $tpl->set('NEWTOPIC', '<b>[ <a href="index.php?forum-newtopic-'.$fid.'">'.$lang['newtopic'].'</a> ]</b>' ); } else { $tpl->set('NEWTOPIC',''); } $tpl->set('MPL', $MPL); $tpl->set_out('FID', $fid, 0); $q = "SELECT a.id, a.name, a.rep, a.erst, a.hit, a.art, a.stat, b.time, b.erst as last, b.id as pid FROM prefix_topics a LEFT JOIN prefix_posts b ON a.last_post_id = b.id WHERE a.fid = {$fid} ORDER BY a.art DESC, b.time DESC LIMIT ".$anfang.",".$limit; $erg = db_query($q); if ( db_num_rows($erg) > 0 ) { while($row = db_fetch_assoc($erg) ) { if ($row['stat'] == 0) { $row['ORD'] = 'cord'; } else { #$row['ORD'] = get_ordner($row['time']); $row['ORD'] = forum_get_ordner($row['time'],$row['id'],$fid); } $row['date'] = date('d.m.y - H:i',$row['time']); $row['page'] = ceil ( ($row['rep']+1) / $allgAr['Fpanz'] ); $row['VORT'] = ( $row['art'] == 1 ? 'Fest: ' : '' ); $tpl->set_ar_out($row,1); } } else { echo '<tr><td colspan="6" class="Cnorm"><b>keine Einträge vorhanden</b></td></tr>'; } $tpl->out(2); if ( $forum_rights['mods'] == TRUE ) { $tpl->set('id', $fid); $tpl->out(3); } $design->footer(); ?>
Ich bedanke mich schonmal
betroffene Homepage: recordsextended.de