initial commit

This commit is contained in:
Sergey Svinolobov
2024-06-24 16:02:24 -04:00
parent eea090518d
commit 2ccb8f55fe
10 changed files with 681 additions and 1 deletions

8
config.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
// config.php
define('UPLOAD_DIR', '/var/www/html/upload/');
define('BASE_URL', 'https://yoursite.com/upload/');
define('TIMEZONE', 'America/New_York');
define('DATE_TIME_FORMAT', 'm/d/y H:i');
date_default_timezone_set(TIMEZONE);
?>