Advertisement
iRomain95

Untitled

Jul 9th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. if(isset($_POST) && !empty($_POST)){
  3.  
  4.     if($_FILES['monfichier']['error'] == 0){
  5.        
  6.         if(!isset($error)){
  7.             {move_uploaded_file($_FILES['monfichier']['tmp_name'], 'img/'.$_FILES['monfichier']['name']);
  8.             echo "le fichier est chargĂ©";
  9.             }
  10.         }else{
  11.             $error = 'problème formulaire.';
  12.         }
  13.        
  14.     }
  15. }
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement