Kann wer die Member_list.php und die html so umschreiben das auch die Flaggen neben den Namen angezeigt werden?
Hab stundenlang jetzt rumprobiert am php iss nicht mein Ding.:(
Danke
Zuletzt modifiziert von Namat am 04.11.2006 - 00:58:22
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <table width="100%" border="0" cellpadding="6" cellspacing="1" class="border"> <tr class="Chead" > <th height="30" width="20%"><li><font color="#e40313">{_lang_name}</font></li></th> <th align="center" width="10%"><li><font color="#e40313">{_lang_state}</font></li></th> <th align="center" width="20%"><li><font color="#e40313">{_lang_rank}</font></li></th> <th align="center" width="20%"><li><font color="#e40313">{_lang_group}</font></li></th> <th width="15%"><li><font color="#e40313">{_lang_regtime}</font></li></th> <th width="15%" align="center"><li><font color="#e40313">{_lang_posts}</font></li></th> </tr>{EXPLODE}<tr class="{CLASS}"> <td><a href="index.php?user-details-{UID}"><b><font color="#FF0000">»</font> {NAME}</b></a></td> <td align="center"><font color="#de122a">{staat}</font></td> <td align="center"><font color="#de122a">{RANG}</font></td> <td align="center"><font color="#f5dc0c">{GRUPE}</font></td> <td align="center">{DATE}</td> <td align="center"><b><font color="#29c70a">»</font> {POSTS} <font color="#29c70a">«</font></b></td> </tr>{EXPLODE} </table> <br /> <div align="center">{SITELINK}</div> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <?php # Copyright by: Manuel # Support: www.ilch.de defined ( 'main' ) or die ( 'no direct access' ); $title = $allgAr [ 'title' ]. ' :: User :: ' . $lang [ 'listofmembers' ]; $hmenu = $extented_forum_menu . 'User <b> » </b> ' . $lang [ 'listofmembers' ]. $extented_forum_menu_sufix ; $design = new design ( $title , $hmenu , 1, 'forum/index.htm' ); $design ->header(); $limit = 100; // Limit $page = ( $menu ->getA(1) == 'p' ? $menu ->getE(1) : 1 ); $MPL = db_make_sites ( $page , "" , $limit , '?user' , 'user' ); $anfang = ( $page - 1) * $limit ; $tpl = new tpl ( 'user/memb_list.htm' ); $tpl ->set_out ( 'SITELINK' , $MPL , 0); $class = '' ; $erg = db_query("SELECT posts, prefix_user.id, prefix_grundrechte.name as recht_name, regist, prefix_user.name FROM prefix_user LEFT JOIN prefix_grundrechte ON prefix_user.recht = prefix_grundrechte.id ORDER by recht,prefix_user.posts DESC LIMIT ".$anfang." ,". $limit ); while ( $row = db_fetch_object( $erg )) { if ( $class == 'Cmite' ) { $class = 'Cnorm' ; } else { $class = 'Cmite' ; } $ar = array ( 'NAME' => $row ->name, 'RANG' => userrang( $row ->posts, $row ->id), 'CLASS' => $class , 'POSTS' => $row ->posts, 'UID' => $row ->id, 'DATE' => date ( 'd.m.Y' , $row ->regist), 'GRUPE' => $row ->recht_name ); $tpl ->set_ar_out( $ar ,1); } $tpl ->out(2); $design ->footer(); ?> |
Geschlossen | ||
![]() |
Zurück zu Allgemein |