<?php error_reporting(-1); header('Content-Type: text/html; charset=utf-8'); ini_set('display_errors', 'On'); if(isset($_POST['email']) && filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)){ echo 'Всё ок!'; } ?> <form action="" method "post"> <input type="text" name="email"> <input type="submit"> </form> Nothing is displayed, I have already facilitated, removed, what comes after && and everything does not work early, why I do not always have such simple things working?
