Skip to content

Instantly share code, notes, and snippets.

View BawdyAnarchist's full-sized avatar

BawdyAnarchist BawdyAnarchist

View GitHub Profile
@BawdyAnarchist
BawdyAnarchist / upload.php
Last active October 22, 2022 01:19 — forked from taterbase/upload.php
Simple file upload in php
<!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>