I want to share this posts with you because when i was working on native PHP and Ajax Post request(Specially AngularJS Post request) at that time i can’t get Post value on form submit. That’s why i would like to share you this post. I also want to tell you i was working on my Ubuntu 14.04. I did try lot but i can’t get value.
At last find stuff to how to solve this issue, i did use “file_get_contents(‘php://input’)” that way i could get POST value in json object and i also decode json value using “json_decode()”. So let’s try this way :
Example:
$post = file_get_contents('php://input');
$post = json_decode($post);
$sql = "INSERT INTO items (title) VALUES ('".$post->title."')";
$result = $mysqli->query($sql);