20 lines
481 B
PHP
20 lines
481 B
PHP
<html>
|
|
<body>
|
|
<?php
|
|
|
|
/* Get the name of the file uploaded to Apache */
|
|
$filename = $_FILES['file']['name'];
|
|
|
|
/* Prepare to save the file upload to the upload folder */
|
|
$location = "upload/".$filename;
|
|
|
|
/* Permanently save the file upload to the upload folder */
|
|
if ( move_uploaded_file($_FILES['file']['tmp_name'], $location) ) {
|
|
echo '<p>The HTML5 and php file upload was a success!</p>';
|
|
} else {
|
|
echo '<p>The php and HTML5 file upload failed.</p>';
|
|
}
|
|
|
|
?>
|
|
</body>
|
|
</html>
|