36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Upload</title>
|
|
</head>
|
|
<body>
|
|
<h2>Upload a Large File</h2>
|
|
<form action="test_upload.php" method="post" enctype="multipart/form-data">
|
|
Select file to upload:
|
|
<input type="file" name="fileToUpload" id="fileToUpload">
|
|
<input type="submit" value="Upload File" name="submit">
|
|
</form>
|
|
|
|
<?php
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
$target_dir = "uploads/";
|
|
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
|
|
|
|
// Check if directory exists, if not create it
|
|
if (!is_dir($target_dir)) {
|
|
mkdir($target_dir, 0755, true);
|
|
}
|
|
|
|
// Move uploaded file to the target directory
|
|
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
|
|
echo "The file ". basename($_FILES["fileToUpload"]["name"]). " has been uploaded.";
|
|
} else {
|
|
echo "Sorry, there was an error uploading your file.";
|
|
}
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|