Is there any way to call multiple HTTP request at the same time in angularjs?

    $http({
	method: "post",
        url: phpFile,
	data: parameters,
	headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
}).success(function (data) {
        alert(data);
})