23 lines
764 B
PHP
Executable File
23 lines
764 B
PHP
Executable File
<?php
|
|
header('Content-type: text/html; charset=UTF-8');
|
|
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns='http://www.w3.org/1999/xhtml'>
|
|
<head>
|
|
<meta name='description' content='Upload a picture. Owner only.' />
|
|
<meta http-equiv='content-language' content='en' />
|
|
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
|
|
<title>Upload picture</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form enctype='multipart/form-data' action='upload.php' method='post'>
|
|
<p><input name='upfile' type='file' /></p>
|
|
<p><textarea name='uptext' rows='10' cols='80'></textarea></p>
|
|
<p><input name='uppass' type='password' /></p>
|
|
<p><input type='submit' value='Upload file' /></p>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|
|
|