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:
<?
session_start();
if( isset($_SESSION['user_name']) ){
ECHO " Main Menu ";
ECHO " Welcome ".$_SESSION['user_name']." to the site";
}
?>