View Single Post
  #1 (permalink)  
Old May 30th, 2007, 12:37
kool77 kool77 is offline
Junior Member
Join Date: May 2007
Location: bahrain
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Red face Echo and Sessions

Hi I have a code of sessions I want to write "Welcome .$_SESSION['user_name']." to the site "after the user login. but I need the user name and the welcome message to be bold and have a color too, I don't know how to do that in php .. because the code is on the left top corner it is a session. ((it is not in the HTML tags))

I know this only
Code: Select all
<?
session_start();
 
if( isset($_SESSION['user_name']) ){
 
ECHO " Main Menu ";
 
ECHO " Welcome ".$_SESSION['user_name']." to the site";
}
?>
I can't change the style or whatever!

Thanks
Reply With Quote