PHP - Superglobals and Web Context
Consider this PHP code snippet:
<?php echo 'User ID: ' . $_GET['user_id']; ?>What is the main problem if the URL does not include
user_id parameter?