If you wanted to upload randomText - 5994
text to a PHP server without the client using a <form>
and data was sent in the background, how would you do it?
I guess this should be my code…
let xhr = new XMLHttpRequest();
xhr.open("log.php","POST");
//correct after this line.
xhr.send('{"name":"Sample Form Data","age":".."}');
xhr.close();
The code should send a request + data and the PHP code will do the rest.
This is the PHP code.
$name = $_POST["name"];
$age = $_POST["age"];
echo "client: ".$name."age".$age."yrs";