Hallo,
was muss ich an der suche.php datei verändern, damit man nicht nach news und sowas siuchen kann oder muss sondern nach sachen auf einer anderen Tabelle z.B. ic1_esports oder so ?
Danke
verwendete ilchClan Version: 1.1
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 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | <?php defined ( 'main' ) or die ( 'no direct access' ); function serach_mark( $text , $such ) { # $text = BBcode( $text ); $serar = explode ( ' ' , $such ); $text = strip_tags ( $text ); $text = stripslashes ( $text ); $rte = '' ; $tleng = 30; foreach ( $serar as $v ) { $firs = strpos ( strtolower ( $text ), strtolower ( $v )); $begi = (( $firs - $tleng ) < 0 ? 0 : $firs - $tleng ); $leng = strlen ( $text ); $ende = (( $firs + strlen ( $v ) + $tleng ) > $leng ? $leng : $firs + strlen ( $v ) + $tleng ); $ttxt = substr ( $text , $begi ,( $ende - $begi )); $rte .= ' ... ' .preg_replace( "/" . $v . "/si" , '<b>' . $v . '</b>' , $ttxt ); } return ( $rte ); } $such = '' ; if ( $menu ->get(1) != '' ) { $such = $menu ->get(1); } elseif (isset( $_REQUEST [ 'search' ])) { $such = $_REQUEST [ 'search' ]; } $such = stripslashes (escape( $such , 'string' )); $snac = 'Suche' ; if ( $such == 'augt' OR $such == 'aeit' OR $such == 'aubt' ) { $ar_s = array ( 'aubt' => 'unbeantworteten Themen' , 'aeit' => 'eigenen Beiträgen' , 'augt' => 'neue Themen seit dem letzten Besuch' ); $snac = $ar_s [ $such ]; } elseif ( isset( $_REQUEST [ 'search' ]) ) { $snac = 'nach: ' . $such ; } $title = $allgAr [ 'title' ]. ' :: Praktikum Suchen :: ' .htmlentities( $snac ); $hmenu = 'Praktikum suchen' ; $design = new design ( $title , $hmenu ); $design ->header(); $tpl = new tpl ( 'praktikumsuchen' ); $tpl ->set ( 'size' , 30); if ( $such != 'augt' AND $such != 'aeit' AND $such != 'aubt' ) { $tpl ->set_out( 'search' ,escape_for_fields( $such ),0); } if (! empty ( $such )) { $page = 1; if (isset( $_GET [ 'page' ])) { $page = str_replace ( '-p' , '' , $_GET [ 'page' ]); } $limit = 25; // Limit $anfang = ( $page - 1) * $limit ; if ( $such == 'aubt' OR $such == 'augt' OR $such == 'aeit' ) { $s = "DISTINCT b.id as fid, a.name as titel, 'foru' as typ, a.id as id" ; $q = "select {SELECT} FROM prefix_topics a LEFT JOIN prefix_forums b ON b.id = a.fid LEFT JOIN prefix_posts c ON c.tid = a.id WHERE (b.view >= ".$_SESSION['authright']." OR b.reply >= ".$_SESSION['authright']." OR b.start >= ".$_SESSION['authright']." ) AND {WHERE} ORDER BY c.time DESC"; } $x = time() - (3600 * 24 * 360); if ( $such == 'aubt' ) { $where = "c.time >= " . $x . " AND a.rep = 0" ; $c = str_replace ( '{WHERE}' , $where , str_replace ( '{SELECT}' , 'COUNT(DISTINCT a.id)' , $q )); $gAnz = db_result(db_query( $c ),0); $q = str_replace ( '{WHERE}' , $where , str_replace ( '{SELECT}' , $s , $q )); } elseif ( $such == 'augt' ) { $where = "c.time >= " . $x . " AND c.time >= " . $_SESSION [ 'lastlogin' ]; $gAnz = db_result(db_query( str_replace ( '{WHERE}' , $where , str_replace ( '{SELECT}' , 'COUNT(DISTINCT a.id)' , $q ))),0); $q = str_replace ( '{WHERE}' , $where , str_replace ( '{SELECT}' , $s , $q )); } elseif ( $such == 'aeit' ) { $where = "c.time >= " . $x . " AND c.erstid = " . $_SESSION [ 'authid' ]; $gAnz = db_result(db_query( str_replace ( '{WHERE}' , $where , str_replace ( '{SELECT}' , ' COUNT(DISTINCT a.id)' , $q ))),0); $q = str_replace ( '{WHERE}' , $where , str_replace ( '{SELECT}' , $s , $q )); } else { $such = str_replace ( '-' , '' , $such ); $such = str_replace ( '=' , '' , $such ); $such = str_replace ( '&' , '' , $such ); $serar = explode ( ' ' , $such ); $str_forum = '' ; $str_news = '' ; $str_downs = '' ; foreach ( $serar as $v ) { $str = str_replace ( '\'' , '' , $v ); $str = str_replace ( '"' , '' , $str ); $str = addslashes ( $str ); if ( ! empty ( $str ) ) { $str_forum .= "txt LIKE '%" . $str . "%' AND " ; $str_news .= "news_text LIKE '%" . $str . "%' AND " ; $str_downs .= "`descl` LIKE '%" . $str . "%' AND " ; } } $q = "( SELECT DISTINCT 0 as fid, news_title as titel, 'news' as typ, news_id as id, news_time as time FROM prefix_news WHERE ( ".$str_news." 1 = 1) AND (news_time >= ". $x ." ) ) UNION ( SELECT DISTINCT prefix_topics.fid as fid, prefix_topics.name as titel, 'foru' as typ, prefix_topics.id as id, time as time FROM prefix_posts LEFT JOIN prefix_topics ON prefix_topics.id = prefix_posts.tid LEFT JOIN prefix_forums ON prefix_forums.id = prefix_topics.fid WHERE (prefix_forums.view >= ".$_SESSION['authright']." OR prefix_forums.reply >= ".$_SESSION['authright']." OR prefix_forums.start >= ".$_SESSION['authright']." ) AND ( ".$str_forum." 1 = 1) AND (time >= ". $x ." ) GROUP BY prefix_topics.id ) UNION ( SELECT DISTINCT 0 as fid, CONCAT( name, ' ' , version ) AS titel, 'down' as typ, id, UNIX_TIMESTAMP(time) as time FROM prefix_downloads WHERE ( ".$str_downs." 1 = 1) AND (time >= ". $x ." ) ) ORDER BY time DESC"; $gAnz = db_num_rows(db_query( $q )); } $q .= " LIMIT " . $anfang . "," . $limit ; $MPL = db_make_sites ( $page , "" , $limit , "index.php?search=" .urlencode( $such ). "&page=" , "" , $gAnz ); $tpl ->set_ar_out( array ( 'MPL' => $MPL , 'gAnz' => $gAnz ),1); $q = db_query( $q ); $class = '' ; while ( $r = db_fetch_assoc( $q ) ) { $class = ( $class == 'Cmite' ? 'Cnorm' : 'Cmite' ); $r [ 'class' ] = $class ; if ( $r [ 'typ' ] == 'foru' ) { $r [ 'ctime' ] = db_result(db_query( "SELECT MAX(time) FROM prefix_posts WHERE tid = " . $r [ 'id' ]),0,0); $r [ 'ord' ] = forum_get_ordner( $r [ 'ctime' ], $r [ 'id' ], $r [ 'fid' ]); $r [ 'link' ] = 'forum-showposts-' . $r [ 'id' ]; } elseif ( $r [ 'typ' ] == 'news' ) { $r [ 'ord' ] = 'ord' ; $r [ 'link' ] = 'news-' . $r [ 'id' ]; } elseif ( $r [ 'typ' ] == 'down' ) { $r [ 'ord' ] = 'ord' ; $r [ 'link' ] = 'downloads-show-' . $r [ 'id' ]; } $tpl ->set_ar_out( $r ,2); } $tpl ->out(3); } $design ->footer(); ?> |
Geschlossen | ||
![]() |
Zurück zu HTML, PHP, SQL,... |