Folder reorganize 1

This commit is contained in:
Rucus
2026-02-17 12:44:37 -06:00
parent ec99d85bc2
commit f0ae0ab905
17427 changed files with 2071 additions and 1059030 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());
}