Advertisement
hamjoricantiq

tambaah

Jan 14th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. $foto           = $_FILES['foto'];
  2.  
  3.         if (!empty($foto) AND $foto['error'] == 0) {
  4.             $path = 'pwpb19/assets';
  5.             $upload = move_uploaded_file($foto, 'pwpb19/assets');
  6.  
  7.             if (!$upload) {
  8.                 flash('error', "Upload file gagal");
  9.                 header('location: index.php');
  10.             }
  11.             $file = $foto['name'];
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement