How can I add html to this page?

Supreme_great

New Member
I need to add html to this page without echoing it. I only want to display it if there is a session id.\[code\]<?php session_start();//home.phpif($_SESSION['id']){echo "Welcome ,".$_SESSION['username'] ;echo "<br /><br /><a href='http://stackoverflow.com/login/logout.php'>Logout</a>" ;echo "<br /><br /><a href='http://stackoverflow.com/questions/3550320/edit.php'>Edit Profile</a>" ;echo "<br /><br /><a href='http://stackoverflow.com/profiles/".$_SESSION['username']."'>View Profile</a>" ;}else{echo "You don't belong here!";}?>\[/code\]
 
Back
Top