blob: 6b5955f40a4ba8218c2521d2f77fe8b27aabc2a2 [file]
<?php
if (isset($_POST['submit_step_1']) && ()) { //<- there is an obvious mistake here
echo "I am wrong condition because of empty brackets";
} else {
echo "I am part of code that won't be reached because of wrong condition in if statement";
}
?>