Fenhopi Posted March 3, 2010 Share Posted March 3, 2010 Hi, can anyone help me with how I would do this? I´m trying to add some colors to my php page. But I have problems adding CSS to this code, so I figured I´d try and add an own navbar for each event. php] if($session->logged_in){ Then display navbar1 if($session->isAdmin()){ then display navbar2 } [/code] Link to comment https://forums.phpfreaks.com/topic/193973-how-to-add-different-navigation-bars-and-pages-to-different-if-events/ Share on other sites More sharing options...
Dennis1986 Posted March 3, 2010 Share Posted March 3, 2010 if($session->logged_in){ Then display navbar1 } if($session->isAdmin()){ then display navbar2 } You were missing an ending bracket } in the first statement. I don't know if this error is what you were trying to solve, but do you know anything about sessions? I'm asking since you have an object called $session. Otherwise you need to be more specific about what the problem is as the code you provided is quite simple Link to comment https://forums.phpfreaks.com/topic/193973-how-to-add-different-navigation-bars-and-pages-to-different-if-events/#findComment-1020790 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.