What the heck is $function(); and $$variable for?
$function();
$$variable
Have never heard of these before, and searching on google doesn\'t give anything useful
$$variable can be quite useful. What it does:
$a = 1; $b = "a"; echo $$b;
Outputs 1
1