ich wollte meine Memberliste ändern. Habe diese Anleitung befolgt externer Link
Leider geht es nicht und meine memb_list.php + memb_list.htm sehen etwas anders aus als in dem Beitrag beschrieben. Könnte mir jemand vielleicht helfen?
LG
memb_list.php
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 50 51 52 53 54 55 56 57 58 59 60 61 62 | <?php # Copyright by: Manuel Staechele # 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); $design ->header(); $limit = 20; // 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); $filtername = isset( $_GET [ 'filtername' ]) ? "WHERE prefix_user.name LIKE '%" .escape( $_GET ['filtername '],' string ')."%' " : "" ; $class = '' ; $erg = db_query("SELECT posts, icq, staat, email, llogin, 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 $filtername ORDER by recht,prefix_user.posts DESC LIMIT ".$anfang." ,". $limit ); while ( $row = db_fetch_object( $erg )) { if ( $row ->icq == "" ){ $icq = "" ; } else { $icq = "<a href=\"http://wwp.icq.com/scripts/search.dll?to=" . str_replace ( "-" , "" , $row ->icq). "\" target=\"_blank\"><img src=\"http://status.icq.com/online.gif?web=" . str_replace ( "-" , "" , $row ->icq). "&img=5\" border=\"0\"></a>" ; } if ( $class == 'Cmite' ) { $class = 'Cnorm' ; } else { $class = 'Cmite' ; } $ar = array ( 'NAME' => $row ->name, 'RANG' => userrang( $row ->posts, $row ->id), 'CLASS' => $class , 'POSTS' => $row ->posts, 'ICQ' => $icq , 'UID' => $row ->id, 'DATE' => date ( 'd.m.Y' , $row ->regist), 'GRUPE' => $row ->recht_name, 'STAAT' => $row ->staat, 'EMAIL' => $row ->email, 'LLOGIN' => date ( 'd.m.Y <b\r> H:i' , $row ->llogin). ' Uhr' ); $tpl ->set_ar_out( $ar ,1); } $tpl ->set_out( 'filtername' ,escape(isset( $_GET [ 'filtername' ])? $_GET [ 'filtername' ]: '' , 'string' ),2); $design ->footer(); ?> |
memb_list.htm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <table width="100%" border="0" cellpadding="3" cellspacing="1" class="border"> <tr class="Chead"> <th align="center" width="5%">{_lang_land}</th> <th align="center" height="30" width="25%">{_lang_name}</th> <!--<th align="center" width="20%">{_lang_rank}</th>--> <th align="center" width="15%">{_lang_group}</th> <th align="center" width="5%">{_lang_contact}</th> <th align="center" width="30%">{_lang_lasttimeonline}</th> <th width="20%" align="center">{_lang_regtime}</th> </tr>{EXPLODE}<tr class="{CLASS}"> <th align="center" width="5%"><img src="include/images/flags/{STAAT}" alt="" border="0"></th> <td align="center" width="30%"><a href="index.php?user-details-{UID}">{NAME}</a></td> <!--<td align="center"><font style="font-size: 10px">{RANG}</font></td>--> <td align="center" width="15%">{GRUPE}</td> <td align="center" width="20%"><a href="mailto:{EMAIL}"><img src="include/images/icons/email_small.png" border="0"></a> {ICQ}</td> <td align="center" width="30%">{LLOGIN}</td> <td align="center" width="5%">{DATE}</td> </tr>{EXPLODE} </table> <br /> <div align="center">{SITELINK} <form method="get" action="index.php"><input type="hidden" name="user" value="" /><input type="text" name="filtername" size="15" value="{filtername}" /> <input type="submit" value="{_lang_filter}" /></form> </div> |
Zuletzt modifiziert von Streethawk am 27.01.2009 - 16:00:09