Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 52.14.219.203
Current Path : /var/www/html/pget/ |
| Current File : /var/www/html/pget/upload1.php |
<?php
$ds = DIRECTORY_SEPARATOR; //1
$date = date("dmYhis");
$storeFolder = 'upload'; //2
if (!empty($_FILES)) {
$tempFile = $_FILES['file']['tmp_name']; //3
$targetPath = realpath(__DIR__ . '/..') . $ds. $storeFolder . $ds; //4
$targetFile = $date.$targetPath. $_FILES['file']['name']; //5
move_uploaded_file($tempFile,$targetFile); //6
}
?>
|