Source Code:
(back to article)
<?php $something = isset($_GET['something']) ? $_GET['something'] : ''; echo $something; // will echo nothing on the screen
Result:
Report an issue