mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
15 lines
No EOL
260 B
PHP
15 lines
No EOL
260 B
PHP
<?php
|
|
/*
|
|
* index.php
|
|
* Upload2USB App Index Page
|
|
*/
|
|
|
|
$title = "Upload to USB";
|
|
include("header.php");
|
|
|
|
//Check if folder for today exists, and get file count if it does
|
|
$file_count = getFileCount(getTargetFolderPath(0));
|
|
|
|
?>
|
|
|
|
<?php include ("footer.php"); ?>
|