Размер файла: 2.09Kb
<?php
?>
<html>
<head><title>..:: Sams-club - Upload ::..</title>
<?php
require ('config.php'); # Include configuration file.
require ('common.php'); # Include common file with functions in.
?>
<!--- HTML Submission Form Section --->
<body>
<font face="verdana" color="darkblue">
<center>
<!--- Main Logo Image --->
<?php
# Do not change the logo file here, there is an option for this in the config.php file.
echo "<h1>Sams-club - Upload</h1>";
?>
<!--- Setup Table, To Hold Function Links --->
<br>
<!-- Maximum File Size Warning -->
<?php
if ($show_info == "1")
{
require 'config.php';
$fileaccept = "";
if($filetype1 != "NULL")
{
$fileaccept = $fileaccept . $filetype1;
}
if($filetype2 != "NULL")
{
$fileaccept = $fileaccept . ", " . $filetype2;
}
if($filetype3 != "NULL")
{
$fileaccept = $fileaccept . ", " . $filetype3;
}
if($filetype4 != "NULL")
{
$fileaccept = $fileaccept . ", " . $filetype4;
}
if($filetype5 != "NULL")
{
$fileaccept = $fileaccept . ", " . $filetype5;
}
if($filetype6 != "NULL")
{
$fileaccept = $fileaccept . ", " . $filetype6;
}
if($filetype7 != "NULL")
{
$fileaccept = $fileaccept . ", " . $filetype7;
}
if($filetype8 != "NULL")
{
$fileaccept = $fileaccept . ", " . $filetype8;
}
$upload_size = $max_file_size/1024;
print "<h6>Файлы автоматически сортируются и помещаются в архив пользователей после просмотра файлов Администратором.</h6>";
print "<h6>Поддерживаемые форматы для загрузки файлов: $fileaccept .Максимальный объем файла: $upload_size kilobytes (KB).</h6>";
}
?>
<!--- Actual Form --->
<form enctype="multipart/form-data" action"<?php print $PHP_SELF ?>" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo ($max_file_size); ?>">
<input type="file" name="fupload">
<br><br>
<input type="submit" value="Загрузить Файл">
<br>
</form>
</body>
</html>