下面的php代码是用户登录后获得的login_successful.php,在这个页面中我想显示他的“用户名”和一个注销链接
<html>
<head>
<?php
session_start();
if(!session_is_registered(myusername)){
header("location:home.html");
}
?>
</head>
<body>
Welcome $myusername //here i want to display logged in user's name
Login Successful
</body>
</html>
我应该如何在此页面中放置注销链接而不使用另一个 logout.php 文件。