Hello everyone, guys! There was a problem with POST :
there is a file test.php -
<form action="test2.php" method="post" > Ваше имя:<input id="login" type="text" name="login"/> <input type="submit"/> </form> And there is a test2.php handler file -
echo 'Привет, '.$_POST['login']; The test.php file sends the data (login) to the test2.php handler, but the browser simply displays the word "Hello" and that's it. Also checked var_dump- th and prints NULL .
The most interesting thing is that in the tools of the developer of the browser Network in the Form Data item are shown my entered and sent data (login). That is, the browser simply does not display the post data on the screen, although it is in the browser headers. I thought maybe something with OpenServer, reinstalled it, the same garbage! Maybe someone has already encountered this?