Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. $foto = $_FILES['foto'];  
  2.   $jurusan = $_POST['jurusan'];
  3.   $alamat = $_POST['alamat'];
  4.   $Goldar = $_POST['Goldar'];
  5.   $Nama_ibu = $_POST['Nama_ibu'];
  6.  
  7.   if(!empty($foto) AND $foto['error'] == 0){
  8.       $path = './Assets/images/';
  9.       $upload = move_uploaded_file($foto['tmp_foto'], $path . $foto['name'] );
  10.    
  11.     if(!$upload){
  12.       flash('error', "upload file gagal");
  13.       header('location: index.php');
  14.     }
  15.     $file = $foto['name'];
  16.    
  17.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement