Skip to content

Instantly share code, notes, and snippets.

@oliverll1
Last active November 5, 2019 12:26
Show Gist options
  • Save oliverll1/0316feb91850b5d7a2b98fc3b8ca1926 to your computer and use it in GitHub Desktop.
Save oliverll1/0316feb91850b5d7a2b98fc3b8ca1926 to your computer and use it in GitHub Desktop.
Sending response from ajax post request on php
<?php
$post_request = json_decode(file_get_contents('php://input'));
$requestArray = get_object_vars($post_request);
$data = $requestArray['data'];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment