Code has been added to clipboard!

Using $_GET With PHP Superglobals

Example
<html>
<body>

<?php 
echo "Learn " . $_GET['subject'] . " at " . $_GET['web'];
?>

</body>
</html>