I have a function which does a http POST request. The code is specified below. This works fine.
$http({ url: user.update_path, method: \"POST\", d
You can even simply add the parameters to the end of the url:
$http.get('path/to/script.php?param=hello').success(function(data) { alert(data); });
Paired with script.php:
var_dump($_GET); ?>
Resulting in the following javascript alert:
array(1) { ["param"]=> string(4) "hello" }