upload.php 573 B

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