]> git.ozlabs.org Git - ccan/blob - web/upload.php
commiting ccan web pages
[ccan] / web / upload.php
1 <?php 
2 session_start();
3
4 include('logo.html');
5 include('menulist.html');
6 include('configuration');
7 ?>
8 <html>
9 <h3 align="center"> Upload Code</h3>
10 <table width="80%" align="center">
11 <tr>
12 <th>
13 <p>
14 <form enctype="multipart/form-data" action="uploader.php" method="POST">
15 <table align="center">
16 <tr align="left">
17 <td>
18         <input type="hidden" name="MAX_FILE_SIZE" value="10000000" />
19         Choose a file to upload:
20 </td>
21 <td>
22 <input name="uploadedfile" type="file" /><br />
23 </td>
24 </tr>
25 <td></td>
26 <td><input type="submit" value="Upload File" /></td>
27 </tr>
28 </table>
29 </form>
30 <hr>
31 </html>