php 通过Session检查用户是否已经登录的解决办法

内容摘要
这篇文章主要为大家详细介绍了php 通过Session检查用户是否已经登录的简单示例,具有一定的参考价值,可以用来参考一下。

php通过Session判断检查用户是否已经登录的代码,对此
文章正文

这篇文章主要为大家详细介绍了php 通过Session检查用户是否已经登录的简单示例,具有一定的参考价值,可以用来参考一下。

php通过Session判断检查用户是否已经登录的代码,对此感兴趣的朋友,看看idc笔记做的技术笔记。functions.php,经测试代码如下:

/**
 * 通过Session判断检查用户是否已经登录
 *
 * @param 
 * @arrange (www.idcnote.com)
 **/
function loggedIn(){ 
//Session logged is set if the user is logged in 
//set it on 1 if the user has successfully logged in 
//if it wasn't set create a login form 
if(!$_SESSION['loggd']){ 
echo'<form action="checkLogin.php" method="post"> 
<p> 
Username:<br> 
<input type="text" name="username"> 
</p> 
<p> 
Password:<br> 
<input type="password" name="username"> 
</p> 
<p> 
<input type="submit" name="submit" value="Log In"> 
</p> 
</form>'; 
//if session is equal to 1, display 
//Welcome, and whaterver their user name is 
}else{ 
echo 'Welcome, '.$_SESSION['username']; 
} 
} 



/***   来自php教程(www.idcnote.com)   ***/
index.php 经测试代码如下:

<?php 
//Start the session 
session_start();
//This is a simplified HTML Document 
?> 
<html>
<head>
<title>My Page</title>
</head>
<body>
<?php 
//Call the functions file 
require_once("functions.php"); 
//Display either the user's name, or the login form 
//This can be placed on many pages without having 
//to re-write the form everytime, just use this function 
logedIn(); 
?> 
</body>
</html>


/***   来自php教程(www.idcnote.com)   ***/

注:关于php 通过Session检查用户是否已经登录的简单示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!