Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. include __DIR__ . '/functions.php';
  4. session_start();
  5.  
  6. if (getCurrentUser()) {?>
  7.  
  8. <html>
  9. <body>
  10.  
  11. <form action="/upl.php" method="post" enctype="multipart/form-data">
  12.  
  13.     <input type="file" name="myimage">
  14.     <button type="submit">Отправить</button>
  15. </form>
  16.  
  17. </body>
  18. </html>
  19.  
  20. <?php
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement