Skip to content

Instantly share code, notes, and snippets.

@radarin
Created October 21, 2017 20:35
Show Gist options
  • Save radarin/9bbeeed9a1a0b51644cfe1ecc056eebd to your computer and use it in GitHub Desktop.
Save radarin/9bbeeed9a1a0b51644cfe1ecc056eebd to your computer and use it in GitHub Desktop.
Sicherstellen, dass Variable existiert
<?php
if(isset($_GET['page'])){
$page = $_GET['page'];
}else{
$page = "home";}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment