Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created November 16, 2012 18:46
Show Gist options
  • Select an option

  • Save hsquareweb/4089830 to your computer and use it in GitHub Desktop.

Select an option

Save hsquareweb/4089830 to your computer and use it in GitHub Desktop.
PHP: $_GET
<!-- Check URL for a specific string -->
<?php
if ($_GET['string'] === "value") {
echo '';
}
elseif ($_GET['string']) {
echo '';
}
else {
echo '';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment