Advertisement
Guest User

Untitled

a guest
Dec 17th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <?php
  4. session_start();
  5. ?>
  6. <head>
  7.  
  8. <style>
  9. #header {
  10.     background-color:black;
  11.     color:white;
  12.     text-align:center;
  13.     padding:5px;
  14. }
  15. #nav {
  16.     line-height:30px;
  17.     background-color:#eeeeee;
  18.     height:515px;
  19.     width:225px;
  20.     float:left;
  21.     padding:5px;         
  22. }
  23. #section {
  24.     width:900px;
  25.     float:left;
  26.     padding:10px;        
  27. }
  28. #footer {
  29.     background-color:black;
  30.     color:white;
  31.     clear:both;
  32.     text-align:center;
  33.    padding:5px;      
  34. }
  35. </style>
  36. </head>
  37.  
  38. <body>
  39.  
  40. <div id="header">
  41. <h1>Firas File Management</h1>
  42. </div>
  43.  
  44. <div id="nav">
  45.  
  46. <A HREF = "contact us.php">* Contact Us</A>
  47. <br><A HREF = "logout.php">* Log Out</A></br>
  48.  
  49.  <form action="add_file.php" method="post" enctype="multipart/form-data">
  50.         <input type="file" name="uploaded_file"><br>
  51.         <input type="submit" value="Upload file">
  52.     </form>
  53. </div>
  54. <?php
  55. require_once('members.php');
  56. ?>
  57. <div id="section">
  58. <h1>Your Files</h1>
  59.  
  60. <?php
  61. require_once('list_files.php');
  62. ?>
  63. </div>
  64.  
  65. <div id="footer">
  66. Copyright © Abdulhadi Alreshidi
  67. </div>
  68.  
  69. </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement