How does PHP handle something like this:
$blah = "Testing a variable";
$$blah = "test";
What would I access my dynamically declared variable?
Everything you need to know about variable variables at http://www.php.net/manual/en/language.variables.variable.php, except for one thing: don't use them.
The variable $blah must contain a valid variable name.
This will tell you about variables: http://www.php.net/manual/en/language.variables.basics.php
${"Testing a variable"}works fine.