Answers for "send axios request to php"

PHP
2

send axios request to php

<?php  
  $rp = json_decode(file_get_contents('php://input'), true);
Posted by: Guest on July-11-2020
-1

axios post php

// JS
axios.post(url, JSON.stringify({
name: "this.name",
email: "this.psswrd"
}))
  
// PHP
$_POST = json_decode(array_keys($_POST)[0], true);
Posted by: Guest on April-06-2020

Code answers related to "send axios request to php"

Browse Popular Code Answers by Language