Ok I need more help with something again.
$section = "one";
$blah_$section_blah = "whatever";
This gives me a parse error. How could I do something like this so that it will eventually be like this:
$blah_one_blah = "whatever";
echo $blah_one_blah;
But the 'one' has to be put there by the $section variable.
Anyways something like the top code.