PHP - Superglobals and Web Context
What is wrong with this PHP code?
Assuming the URL does not have an 'id' parameter.
<?php
if ($_GET['id'] == 10) {
echo 'ID is 10';
}
?>Assuming the URL does not have an 'id' parameter.
