You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
432 B
PHP
17 lines
432 B
PHP
|
|
<?php
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
|
|
$uploaddir = getcwd() . '/uploads/';
|
|
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
|
|
|
|
// TODO check file type
|
|
|
|
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
|
|
echo json_encode("File is valid, and was successfully uploaded.\n");
|
|
} else {
|
|
echo json_encode( "Possible file upload attack!\n");
|
|
}
|
|
}
|
|
?>
|