0xV3NOMx
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 : 18.222.118.236


Current Path : /var/www/html/pms/
Upload File :
Current File : /var/www/html/pms/upload_file.php

<?php

	$file_resp="";
	if ( 0 < $_FILES['file']['error'] ) 
	{
		echo 'Error: ' . $_FILES['file']['error'] . '<br>';
		$file_resp="Failed to upload file!";
	}
	else 
	{
		$time = date("Ymdhms");
		$name = $time.$_FILES['file']['name'];
		$file_name = str_replace($_FILES['file']['name'],$name , $_FILES['file']['name']); // 
		$path = 'invoice/'.$file_name;
		move_uploaded_file($_FILES['file']['tmp_name'], 'invoice/'.$file_name);
	}	
	echo $path;
?>