All pastes #2053934 Raw Edit

Something

public text v1 · immutable
#2053934 ·published 2011-05-04 19:19 UTC
rendered paste body
<?php
	session_start();

		if(!isset($_SESSION['uname'])){
			Header("Location:index.php");
		} else {
	?>

<html>
	<head>
	 <title>Welcome!</title>
	</head>
	<body>
		<?php echo "Welcome back ".$_SESSION['uname']."";?>
		<p><a href="logout.php">Logout</a></p>
	</body>
</html>

<?php
	}
?>