Unser Clan benutzt momentan das Nexor_12 design.
ch hab es allerdings ein wenig modifiziert und einige boxen in das design mt eingebaut.
Jetzt hab ich allerdings ein nicht schönes problem.
Hab jetzt die die boxen downloads und gästebuch mit in die rechte box eingebaut und würde die gerne wie die last news, last wars und die last forum aussehen lassen, allerdings hab ich noch keine ahnung von php (nur wenige damt das design passt)
könnte mir die jemand so anpassen das sie wie die last news, last wars und die last forum boxen aussehen?
MFG
Bounty
das ist meine gb.php
<?php defined ('main') or die ( 'no direct access' ); $abf = 'SELECT * FROM prefix_gbook ORDER BY id DESC LIMIT 0,5'; $erg = db_query($abf); while ($row = db_fetch_object($erg)) { $datum = date('d.m.y',$row->time); $name = $row->name; echo' <table width="100%" cellspacing="0" cellpadding="0" height="13"> <tr><td><a href="index.php?gbook">» '.$datum.' '.$name.'</a></td></tr> </table>'; } ?>
das st meine download.php
<?php //Copyright by Stefan Jungbauer //www.zocker-eppingen.de //V 1.1 defined ('main') or die ( 'no direct access' ); echo '<b></b>'; $a = 0; $erg = db_query("SELECT prefix_downloads.cat,hits,prefix_downloads.name,prefix_downloads.id,DATE_FORMAT(time,'%d.%m.%Y') as datum FROM prefix_downloads LEFT JOIN prefix_downcats ON prefix_downcats.id = prefix_downloads.cat WHERE ".$_SESSION['authright']." <= prefix_downcats.recht order by hits DESC LIMIT 0,5"); while ($row = db_fetch_object($erg)) { $a++; $name = $row->name; echo' <table width="100%" cellspacing="0" cellpadding="0" height="13"> <tr><td>'.$a.'. <a href="?downloads-show-'.$row->id.'"> '.$name.'</a></td><td>'.$row->hits.'</td></tr> </table>'; } ?>
und das ist die lastforum.php die auf dem design angepasst wurde
<?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>'; ?>
verwendete ilchClan Version: 1.1
betroffene Homepage: whitetigers-gaming.de