]> git.ozlabs.org Git - ccan/blobdiff - web/upload.php
commiting ccan web pages
[ccan] / web / upload.php
diff --git a/web/upload.php b/web/upload.php
new file mode 100644 (file)
index 0000000..1a83d95
--- /dev/null
@@ -0,0 +1,31 @@
+<?php 
+session_start();
+
+include('logo.html');
+include('menulist.html');
+include('configuration');
+?>
+<html>
+<h3 align="center"> Upload Code</h3>
+<table width="80%" align="center">
+<tr>
+<th>
+<p>
+<form enctype="multipart/form-data" action="uploader.php" method="POST">
+<table align="center">
+<tr align="left">
+<td>
+       <input type="hidden" name="MAX_FILE_SIZE" value="10000000" />
+       Choose a file to upload:
+</td>
+<td>
+<input name="uploadedfile" type="file" /><br />
+</td>
+</tr>
+<td></td>
+<td><input type="submit" value="Upload File" /></td>
+</tr>
+</table>
+</form>
+<hr>
+</html>