<label for="username">Username:</label>
<!-- 如果用户已输过用户名,则回显用户名 -->
<input type="text"
value="<?php if(!empty($user_username)) echo $user_username; ?>" />
<br/>
<label for="password">Password:</label>
<input type="password"/>
</fieldset>
<br/>
<input type="submit" value="Log In"/>
</form>
<?php
}
?>
</body>
</html>
3、登入页面:loged.php
复制代码 代码如下:
<?php
//已登录页面,显示登录用户名
if(isset($_COOKIE['username'])){
echo 'You are Logged as '.$_COOKIE['username'].'<br/>';
//点击“Log Out”,则转到logOut.php页面进行cookie的注销
echo '<a href="https://www.jb51.net/logOut.php"> Log Out('.$_COOKIE['username'].')</a>';
}
/**在已登录页面中,可以利用用户的cookie如$_COOKIE['username']、
* $_COOKIE['user_id']对数据库进行查询,可以做好多好多事情*/
?>
4、注销cookie页面:logOut.php(注销后重定向到lonIn.php)
复制代码 代码如下: