File "upload_server.php"
Full Path: /home/analogde/www/XTRAIL/WORKAREA/upload_server.php
File size: 302 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$file_path = "uploads/";
$file_path = $file_path . basename( $_FILES['uploaded_file']['name']);
if(move_uploaded_file($_FILES['uploaded_file']['tmp_name'], $file_path)) {
echo "success";
} else{
echo "fail";
}
?>