mnielsen Posted July 3, 2008 Share Posted July 3, 2008 Hi, I'm trying to create a menu for my site to change when the user is logged in or logged out. <?php if(isset($_SESSION['id']) && isset($_SESSION['sessionID'])){ echo "<a href=\"/profile.php?id=";?><?php echo $_SESSION['id'];?><?php "\">Profile</a> <a href=\"/account.php\">Account</a> <a href=\"/logout.php\">Logout</a>"; else{ echo "<a href=\"/index.php\">Home</a> <a href=\"/signUp.php\">Sign Up</a> <a href=\"/index.php\">Login</a>"; } ?> I've done it before but for the life of me I can't remember it. I need to break the php script so it just includes it as normal text then in my php page then start the script again. What my main objective is to have the profile link with the user id, e.g. /profile.php?id=000000001. Any help PLEASE! Quote Link to comment https://forums.phpfreaks.com/topic/113028-php-dynamic-menu-help/ Share on other sites More sharing options...
.josh Posted July 3, 2008 Share Posted July 3, 2008 <?php if(isset($_SESSION['id']) && isset($_SESSION['sessionID'])){ echo "<a href='/profile.php?id={$_SESSION['id']}'>Profile</a><a href='/account.php'>Account</a> <a href='/logout.php'>Logout</a>"; } else { echo "<a href='/index.php'>Home</a> <a href='/signUp.php'>Sign Up</a> <a href='/index.php'>Login</a>"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/113028-php-dynamic-menu-help/#findComment-580611 Share on other sites More sharing options...
Bendude14 Posted July 3, 2008 Share Posted July 3, 2008 <?php if(isset($_SESSION['id']) && isset($_SESSION['sessionID'])){ ?> <a href="profile.php?id=<?php echo $_SESSION['id']; ?>">Profile</a> <a href="account.php">Account</a> <a href="logout.php">Logout</a> <?php } else { ?> <a href="index.php">Home</a> <a href="signUp.php">Sign Up</a> <a href="index.php">Login</a> <?php } ?> Is this what what you mean? Quote Link to comment https://forums.phpfreaks.com/topic/113028-php-dynamic-menu-help/#findComment-580616 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.