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
$function() is a variable function and $$variable is a variable variable.
$function()
Those linked pages should give you plenty to go on, or at the very least some actual words to search with.
$$variable can be quite useful. What it does:
$a = 1; $b = "a"; echo $$b;
Outputs 1
1