Kirk,
That didn't work for me ... let me explain in a little more detail ... I really appreciate your trying to help me on this.
In a lang-definition.php file I define all strings that are to be displayed on the screen.
One of those definitions is:
define("_HOME", "Home Page");
In a table I have all the requirements of my main menu (bold, italic, indented, etc.) including a lang-reference column:
$menu_lang_ref which is set to _HOME to correspond to my definition.
Then in my menu building program, I need to build a $content variable with the value of _HOME.
If tried the following:
$menu_lang = 'menu_lang_ref';
$content .= $$menu_lang;
As for your exact example:
$menu_lang_ref = "Home Pages";
$menu_lang = 'menu_lang_ref';
$content .= $$menu_lang;
This did exactly as you said. However the first step is not getting the value I need from the database.