spee.ch/publish.php
2017-03-29 19:49:26 -04:00

15 lines
No EOL
280 B
PHP

<?php
if (isset($_POST['file']))
{
print_r($_POST['file']);
}
?>
<!DOCTYPE html>
<h1>Publish</h1>
<form method="POST" action="/publish" enctype="multipart/form-data">
<div>
<input type="file" name="file" />
</div>
<input type="submit" name="key" value="Go" />
</form>