@unknownone Thanks for the clarification on everything.
I typically work with PHP, and in PHP it doesn't effect it too much when u do something as the following:
Code:
$var = "Test";
$Test = "Hello";
$Test2 = " World";
echo ${$var};
Outcome: Hello
Which allows it to be dynamic using the same principle. AKA, im too used to the high-level of programming and am trying to go back to the low-end of things xD