Source Code:
(back to article)
<?php if (isset($_POST)) { // The $_POST variable exists echo 'The $_POST variable exists'; } else { // The $_POST variable does not exist echo 'The $_POST variable does not exist'; }
Result:
Report an issue