Untitled
Anonymous
plain_text
12/23/2022 1:16 PM
264 B
22
Indexable
<?php
$filename = $_FILES['file']['name'];
$location = "upload/".$filename;
if(move_uploaded_file($_FILES['file']['tmp_name'],$location)){
echo $location;
}else{
echo 0;
}Editor is loading...