How can I write a dynamic include? This is what I have , but it's just writing it onto the screen as text:
PHP Code:
session_start();
if(session_is_registered("username")) {
$nav = 'include("includes/nav2.php")';
}
else
{
$nav = 'include("includes/nav.php")';
}
echo $nav;
Comment