Skip to content

Instantly share code, notes, and snippets.

@Deaner666
Created May 26, 2015 21:34
Embed
What would you like to do?
Outputting a URL parameter in PHP
<?php
if ( isset($_GET['key']) ) {
echo $_GET['key'];
} else {
// Fallback behaviour here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment