PHP - Superglobals and Web Context
Consider this PHP snippet:
If the form sends no 'user' field and the URL has no 'user' parameter, what error will occur and how to fix it?
<?php print_r($_REQUEST['user']); ?>
If the form sends no 'user' field and the URL has no 'user' parameter, what error will occur and how to fix it?
