I need to get a variable to be named whatever this array key is, in this case, the array key is only 1 word, so it would be something like; theme, entry or date.
$a = implode(array_keys($_GET));
In this case, I can get $a to equal theme, entry or date, but how can I get the variable to be called $theme $entry or $date?
a simple way to do it
now if you had
$_GET['id']you can use