Skip to content

Instantly share code, notes, and snippets.

@royce002
Created October 14, 2020 17:50
Show Gist options
  • Save royce002/ca7da602531bd46c4fb2e695de4b6193 to your computer and use it in GitHub Desktop.
Save royce002/ca7da602531bd46c4fb2e695de4b6193 to your computer and use it in GitHub Desktop.
Get a php variable from the url and ensure it's not empty
<?php
if (!empty($_GET['variable'])) {
// Do something.
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment