Could anyone tell me why the following statement does not send the post data to the designated url? The url is called but on the server when I print $_POST - I get an empty
To send data via Post methode with $http of angularjs you need to change
$http
data: "message=" + message, with data: $.param({message:message})
data: "message=" + message
data: $.param({message:message})