<?php
$target_path = 'opungfile/';
$target_path = $target_path . basename($_FILES['myfile']['name']);
$upload = move_uploaded_file($_FILES['myfile']['tmp_name'],$target_path);
if ($upload){
	echo "Sukses";
}else{
	echo "gagal";
}
?>
