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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | <?php error_reporting (E_ALL ^ E_NOTICE); $cutepath = __FILE__; $cutepath = preg_replace( "'\\\search\.php'", "", $cutepath); $cutepath = preg_replace( "'/search\.php'", "", $cutepath); $files_arch = array(); require_once("$cutepath/inc/functions.inc.php"); //check for bad _GET and _POST if($dosearch == "yes"){ $check_params = array_merge($_GET, $_POST); foreach($check_params as $param_key=>$param_val){ if( !empty($param_val) && !preg_match('/^[a-zA-Z0-9\- ]{0,255}$/', $param_val) ){ die("Error! the parameter '$param_key' contains illigal characters"); } } } $user_query = cute_query_string($QUERY_STRING, array("search_in_archives", "start_from", "archive", "subaction", "id", "cnshow", "ucat","dosearch", "story", "title", "user", "from_date_day", "from_date_month", "from_date_year", "to_date_day", "to_date_month", "to_date_year")); $user_post_query = cute_query_string($QUERY_STRING, array("search_in_archives", "start_from", "archive", "subaction", "id", "cnshow", "ucat","dosearch", "story", "title", "user", "from_date_day", "from_date_month", "from_date_year", "to_date_day", "to_date_month", "to_date_year"), "post"); // Define Users $all_users = file("$cutepath/data/users.db.php"); $my_names = array(); foreach($all_users as $my_user) { if(!eregi("<\?",$member_db_line)){ $user_arr = explode("|",$my_user); if($user_arr[4] != ""){ $my_names[$user_arr[2]] = "$user_arr[4]"; } else{ $my_names[$user_arr[2]] = "$user_arr[2]"; } } } // Show Search Form echo<<<HTML <script language='javascript' type="text/javascript"> function mySelect(form){ form.select(); } function ShowOrHide(d1, d2) { if (d1 != '') DoDiv(d1); if (d2 != '') DoDiv(d2); } function DoDiv(id) { var item = null; if (document.getElementById) { item = document.getElementById(id); } else if (document.all){ item = document.all[id]; } else if (document.layers){ item = document.layers[id]; } if (!item) { } else if (item.style) { if (item.style.display == "none"){ item.style.display = ""; } else {item.style.display = "none"; } }else{ item.visibility = "show"; } } </script> <form method=GET action="$PHP_SELF?subaction=search"> <input type=hidden name=dosearch value=yes> <div align="center"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td><table width="100%" cellspacing="0" cellpadding="0"> <td width="100%"> <p align="right">News <input type=text value="$story" name=story size="24"> </table></td> </tr> <tr> <td> <div id='advanced' style='display:none;z-index:1;'> <table width="100%" cellspacing="0" cellpadding="0"> <td width="100%" align="right"> <p align="right">Title <input type=text value="$title" name=title size="24"> <tr> <td width="100%" align="right">Author <input type=text value="$user" name=user size="24"> </tr> <tr> <td width="100%" align="right">From date <select name=from_date_day> <option value=""> </option> HTML; for($i=1;$i<32;$i++){ if($from_date_day == $i){ echo"<option selected value=$i>$i</option>"; } else{ echo"<option value=$i>$i</option>"; } } echo"</select><select name=from_date_month> <option value=\"\"> </option>"; for($i=1;$i<13;$i++){ $timestamp = mktime(0,0,0,$i,1,2003); if($from_date_month == $i){ echo"<option selected value=$i>". date("M", $timestamp) ."</option>"; } else{ echo"<option value=$i>". date("M", $timestamp) ."</option>"; } } echo"</select><select name=from_date_year> <option value=\"\"> </option>"; for($i=2003;$i<2011;$i++){ if($from_date_year == $i){ echo"<option selected value=$i>$i</option>"; } else{ echo"<option value=$i>$i</option>"; } } ////////////////////////////////////////////////////////////////////////// echo<<<HTML </tr> <tr> <td width="100%" align="right">To date <select name=to_date_day> <option value=""> </option> HTML; for($i=1;$i<32;$i++){ if($to_date_day == $i){ echo"<option selected value=$i>$i</option>"; } else{ echo"<option value=$i>$i</option>"; } } echo"</select><select name=to_date_month><option value=\"\"> </option>"; for($i=1;$i<13;$i++){ $timestamp = mktime(0,0,0,$i,1,2003); if($to_date_month == $i){ echo"<option selected value=$i>". date("M", $timestamp) ."</option>"; } else{ echo"<option value=$i>". date("M", $timestamp) ."</option>"; } } echo"</select><select name=to_date_year><option value=\"\"> </option>"; for($i=2003;$i<2011;$i++){ if($to_date_year == $i){ echo"<option selected value=$i>$i</option>"; } else{ echo"<option value=$i>$i</option>"; } } if($search_in_archives){ $selected_search_arch = "checked=\"checked\""; } echo<<<HTML </select> </tr> <tr> <td width="100%" align="right"> <p align="right"><label>Search and archives <input type=checkbox $selected_search_arch name="search_in_archives" value="TRUE"></label> </tr> </table> </div> </td> </tr> <tr> <td> <p align="right"> <a href="javascript:ShowOrHide('advanced','')">advanced</a> <input type=submit value=Search> </td> </tr> </table> </div> $user_post_query </form> <center> HTML; // Don't edit below this line unless you know what you are doing !!! if($dosearch == "yes") { if( $from_date_day != "" and $from_date_month != "" and $from_date_year != "" and $to_date_day != "" and $to_date_month != "" and $to_date_year != "" ) { $date_from = mktime(0,0,0,$from_date_month,$from_date_day,$from_date_year); $date_to = mktime(0,0,0,$to_date_month,$to_date_day,$to_date_year); $do_date = TRUE; } $story = trim($story); if($search_in_archives){ if(!$handle = opendir("$cutepath/data/archives")){ die("<center>Can not open directory $cutepath/data/archives "); } while (false !== ($file = readdir($handle))) { if($file != "." and $file != ".." and eregi("news", $file)) { $files_arch[] = "$cutepath/data/archives/$file"; } } } $files_arch[] = "$cutepath/data/news.txt"; foreach($files_arch as $file) { $archive = FALSE; if(ereg("([[:digit:]]{0,})\.news\.arch", $file, $regs)){ $archive = $regs[1]; } $all_news_db = file("$file"); foreach($all_news_db as $news_line){ $news_db_arr = explode("|",$news_line); $found = 0; $fuser = FALSE; $ftitle = FALSE; $fstory = FALSE; if($title and @preg_match("/$title/i", "$news_db_arr[2]")){ $ftitle = TRUE; } if($user and @preg_match("/\b$user\b/i", "$news_db_arr[1]")){ $fuser = TRUE; } if($story and (@preg_match("/$story/i", "$news_db_arr[4]") or @preg_match("/$story/i", "$news_db_arr[3]"))){ $fstory = TRUE;} if($title and $ftitle){ $ftitle = TRUE; }elseif(!$title){ $ftitle = TRUE; }else{ $ftitle = FALSE; } if($story and $fstory){ $fstory = TRUE; }elseif(!$story){ $fstory = TRUE; }else{ $fstory = FALSE; } if($user and $fuser) { $fuser = TRUE; }elseif(!$user) { $fuser = TRUE; }else{ $fuser = FALSE; } if($do_date) { if($date_from < $news_db_arr[0] and $news_db_arr[0] < $date_to){ $fdate = TRUE; }else{ $fdate = FALSE; } }else{ $fdate = TRUE; } if($fdate and $ftitle and $fuser and $fstory){ $found_arr[$news_db_arr[0]] = $archive; } }//foreach news line } echo"<br /><b>Founded News articles [". count($found_arr)."]:</b><br />"; if($do_date){echo"from ".@date("d F Y",$date_from)." to ".@date("d F Y",$date_to)."<br />";} // Display Search Results if(is_array($found_arr)){ foreach($found_arr as $news_id => $archive) { if($archive){$all_news = file("$cutepath/data/archives/$archive.news.arch");} else{ $all_news = file("$cutepath/data/news.txt"); } foreach($all_news as $single_line) { $item_arr = explode("|",$single_line); $local_id = $item_arr[0]; if($local_id == $news_id){ ////////// Showing Result echo"<br /><b><a href=\"$PHP_SELF?misc=search&subaction=showfull&id=$local_id&archive=$archive&cnshow=news&ucat=$item_arr[6]&start_from=&$user_query\">$item_arr[2]</a></b> (". date("d F, Y", $item_arr[0]) .")"; ////////// End Showing Result } } } }else{ echo"There are no news matching your search criteria"; } }//if user wants to search elseif( ($misc == "search") and ($subaction == "showfull" or $subaction == "showcomments" or $_POST["subaction"] == "addcomment" or $subaction == "addcomment")){ require_once("$cutepath/show_news.php"); unset($action,$subaction); } ?> |