In my php, the error will display in the html, but echo will not:
Any ideas how to get echo to display?
Code:
if($_SERVER["REQUEST_METHOD"] == "POST"){ . . . if (empty($error) && $_POST['field'] == etc... { echo "Hello"; $error = "Hello"; . . . etc.
Comment