Source Code:
(back to article)
<?php if (array_key_exists('id', $_GET)) { // URL parameter exists echo 'URL parameter exists'; } else { // URL parameter does not exist echo 'URL parameter does not exist'; }
Result:
Report an issue