PHP - Superglobals and Web Context
What will the following PHP code output if the URL is
page.php?color=blue?
<?php echo $_GET['color']; ?>
page.php?color=blue?
<?php echo $_GET['color']; ?>
color=blue, so $_GET['color'] holds 'blue'.$_GET['color'], so it prints 'blue'.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions