This repository has been archived on 2025-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
inkletblot-com-v1/php gallery/upload.php
2019-12-02 12:10:45 +10:30

23 lines
510 B
PHP

<?php
include 'head.php';
echo '
<h2>Upload a Picture!</h2>
<form action="upload_file.php" method="post" enctype="multipart/form-data" target="_blank">
<label for="file">Picture: (pick something perculiar)</label>
<input type="file" name="file" id="file"><br /><br />
<label for="name">Name your pic!: <em>(leave clear for no name)</em></label>
<input type="text" value="name" name="name" id="name"><br /><br />
<input type="submit" name="submit" value="Submit">
</form>';
include 'foot.php';
?>