Выдает ошибку 410.Вот сайт можете посмотреть:
https://gameeeeeee.000webhostapp.com/
html код:
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<meta charset="utf-8">
</head>
<body>
<h1 id = "text" align="center">Привет!</h1>
<script type="text/javascript" src="main.js"></script>
</body>
</html>
js:
var nick = prompt('Ваш ник?');
var xhr = new XMLHttpRequest();
nick = encodeURIComponent(nick);
xhr.open("POST","form.php");
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhr.send(nick + ".txt");
xhr.onreadystatechange = function(){
if(xhr.readyState == 4 && xhr.status== 200){
document.getElementById("text").innerHTML(xhr.responseText);
}
}
php:
<?php
$inp = file_get_contents("php://input");
if($inp == "ourForm_inp=1"){
echo("LOL");
}else{
$fd = fopen($inp,"w");
fclose($fd);
echo("Вы зарегестрированны!");
}