Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ALL);
  3. ini_set('display_errors', 1);
  4.  
  5. $filepath='';
  6. if(isset($_FILES['file']))
  7. {
  8. $filepath = 'files/'.date('jS F Y h i s A').'.png';
  9. move_uploaded_file($_FILES['file']['tmp_name'], $filepath);
  10. }
  11. else
  12. echo "brak pliku";
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement