add all files

This commit is contained in:
Rucus
2026-02-17 09:29:34 -06:00
parent b8c8d67c67
commit 782d203799
21925 changed files with 2433086 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
date_default_timezone_set('Asia/Kolkata');
$host = "localhost" ;
$user = "root";
$pass = "root";
$db = "exportserverdb";
$con = mysql_connect($host,$user,$pass);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db($db, $con);
if (!$db_selected) {
die ('Can\'t use '. $db . mysql_error());
}

View File

@@ -0,0 +1,9 @@
<ul class="nav nav-list">
<li>
<a href="banlist.php">Ban Ip's</a>
</li>
<li>
<a href="exportList.php"> Downlaods/ Exports till date</a>
</li>
</ul>