Código PHP:
           $imagen_tipo_producto = $_FILES['imagen_tipo_producto']['name'];
        $llega_size= $_FILES['imagen_producto']['size'];
        $path = "../../tipo_producto/";
        
        move_uploaded_file($_FILES['imagen_tipo_producto']['tmp_name'],$path.$imagen_tipo_producto);
        chmod("$path", 0777); 
    saludos.
 
