axios post to body not params code example
Example 1: send axios request to php
<?php
$rp = json_decode(file_get_contents('php://input'), true);
Example 2: axios post php
// JS
axios.post(url, JSON.stringify({
name: "this.name",
email: "this.psswrd"
}))
// PHP
$_POST = json_decode(array_keys($_POST)[0], true);