RELEASED:MirServerCheck - Server List

Primal

LOMCN VIP
VIP
Jun 28, 2004
1,756
102
259
EXAMPLE SITE: http://mirserverstatus.extroverthost.com/

Well thought i might aswell release these now as JackDaniels probably has them all anyways as i left the anonymous ftp open and seems he's stole 1 of my codes and posted on here (claimed it to be "server check part" when it is actually just a simple code to check how many searches has been made(useless really))

Anyways before he tries releasing these as his own, here they are
Happy to take rep :P
Edit, improve and enjoy

(please dont try post these off as your own)
DOWNLOAD:
 
Last edited:

Primal

LOMCN VIP
VIP
Jun 28, 2004
1,756
102
259
your welcome, might aswell let every1 have fun with it also i know others who know more about php will be able to improve it as this is my first attempt at any php coding.

Just to let you all know, the server list doesnt need SQL, but could probably be improved using MYSQL, couldnt be bothered trying to get into all that bit.

also people if you view in the mir1index.php mir2index.php mir3index.php youll find the exact code jackdaniels has posted -- just if you guys want proof its mine lol

this is the other half to the code (to show the output)
PHP:
<div align="center">
   <table width="204">
     <tr>
       <th colspan="2">Unique Server Searches</th>
     </tr>
     <tr>
       <td width="94"><b>Total</b></td>
       <td width="34"><?php
	  $file_searchescount = fopen('logger/searchescount.txt', 'rb');
	$searchesdata = '';
	while (!feof($file_searchescount)) $searchesdata .= fread($file_searchescount, 4096);
	fclose($file_searchescount);
	list($today, $yesterday, $total, $date, $days) = split("%", $searchesdata);
	echo $total;
?>
       </td>
     </tr>
     <tr>
       <td><b>Daily average</b></td>
       <td><?php
	echo ceil($total/$days);
?>
       </td>
     </tr>
   </table>
 </div>
 
Last edited:

Primal

LOMCN VIP
VIP
Jun 28, 2004
1,756
102
259
just giving this a bump as i know sum people dont know about it.
ty