Skip to content

Instantly share code, notes, and snippets.

@MikSDigital
Created September 23, 2016 05:41
Show Gist options
  • Save MikSDigital/6034822b95249723c59f3a5164fe911f to your computer and use it in GitHub Desktop.
Save MikSDigital/6034822b95249723c59f3a5164fe911f to your computer and use it in GitHub Desktop.
convert url parameters to variables (GET)
<?php
if(isset($_GET)) {
foreach ($_GET as $key => $value) {
if(!empty($value)) {
${$key} = trim($value);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment