23 lines
510 B
PHP
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';
|
|
|
|
?>
|
|
|