Skip to content

Instantly share code, notes, and snippets.

@erm3nda
Created September 23, 2018 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erm3nda/57695494ce8c85e247f7acd2bd34585e to your computer and use it in GitHub Desktop.
Save erm3nda/57695494ce8c85e247f7acd2bd34585e to your computer and use it in GitHub Desktop.
1 page PHP upload
<!DOCTYPE html>
<html>
<head>
<title>Upload your files</title>
</head>
<body>
<form enctype="multipart/form-data" action="upload.php" method="POST">
<p>Upload your file</p>
<input type="file" name="uploaded_file"></input><br />
<input type="submit" value="Upload"></input>
</form>
</body>
</html>
<?PHP
if(!empty($_FILES['uploaded_file']))
{
$path = "uploads/";
$path = $path . basename( $_FILES['uploaded_file']['name']);
if(move_uploaded_file($_FILES['uploaded_file']['tmp_name'], $path)) {
echo "The file ". basename( $_FILES['uploaded_file']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment