I am hitting roadblock after roadblock in my quest to get this JSON usable by PHP, so I\'m wondering if someone can help me out here.
I have JSON being stored in the v
As @slamborne mentioned in the comment, the correct call is json_decode(file_get_contents('php://input'))
.
What your call is doing is actually making another call to divisions.php, which is why you're getting NULL back (it doesn't have any data to return to you, as divisions.php doesn't output anything).