<? if($LOGGED_IN) {
echo get_content("Member Menu","
<div id=\"menu5\">
<ul>
<ul>
<li><a href=\"index.php?view=account&ac=profile&".$url_variables."\" title=\"View FAQ\">Help</a></li>
<li><a href=\"index.php?view=account&ac=myads&".$url_variables."\" title=\"View Stats On Your Profile\">Manage</a></li>
<li><a href=\"index.php?view=account&ac=earn&".$url_variables."\" title=\"Click Here To Earn Cash & Points!\"><b>Earnings Area</b></b></a></li>
<li><a href=\"logout.php?".$url_variables."\">Logout</b></a></li>
</ul>
</div>
");
}
?>
this is my code now and i want to insert this line
<?php echo LANG_MENU_HELP; ?>
like this
<? if($LOGGED_IN) {
echo get_content("Member Menu","
<div id=\"menu5\">
<ul>
<ul>
<li><a href=\"index.php?view=account&ac=profile&".$url_variables."\" title=\"View FAQ\"><?php echo LANG_MENU_HELP; ?></a></li>
<li><a href=\"index.php?view=account&ac=myads&".$url_variables."\" title=\"View Stats On Your Profile\">Manage</a></li>
<li><a href=\"index.php?view=account&ac=earn&".$url_variables."\" title=\" Messages\"><b>Messages</b></b></a></li>
<li><a href=\"logout.php?".$url_variables."\">Logout</b></a></li>
</ul>
</div>
");
}
?>
but its not showing anything its working on other places only in this lins i have a problem
i hope you can help me