Click here to Skip to main content
15,881,139 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to make title of webpage change according to user of page like profiles of facebook

say my name is john so the page title should be john

so i need to change the title of page according to name of user without asking his name

how to go about that in code ??
Posted

1 solution

Try this suppose u stored your user name in session means

PHP
$username=$_SESSION['user'];



?>
<html>
<head></head>
<title><?php echo $username; ??></title>
.
.
.
.



</html>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900