Skip to content

Instantly share code, notes, and snippets.

@elliotboney
Last active August 29, 2015 14:03
Show Gist options
  • Save elliotboney/58f489c58eb97622303a to your computer and use it in GitHub Desktop.
Save elliotboney/58f489c58eb97622303a to your computer and use it in GitHub Desktop.
Create matching variable names to $_GET parameters
<?php
$expected=array('module','act','gal_id','page_id','view','reply','post_id');
foreach($expected as $key){
if(!empty($_GET[$key])){
${key}=$_GET[$key];
} else{
${key}=NULL;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment