I didn't read the small print!
It basicly states that what I want to be able to do - can not be done <🙁
So - how do I then reference a superglobal variable - in order to use any constructs like:
$vars = Array( [1] => "$_GET['menuID']" );
$some_var = get_var( $vars );
function get_var( $vars ) {
$ref_var = & $vars[1];
return $$ref_var;
}
The above example is not the answer! It keeps telling me:
Warning: Undefined variable: $_GET['menuID']
(but nice of you to reply, Diego)
/Walther