Basics There are three types of forms in Go Web: r.Form r.PostForm r.MultipartForm PostForm supports form-data and x-www-form-urlencoded request bodies, but does not support file uploads. MultipartForm only supports form-data request bodies, but supports file …