PHP session variables are used to store information about the user session (session), or to change the settings of the user session (session). Session variables store information for a single user and are available to all pages in the application.
We can use PHP to output the user name information stored in the session after logging in to display the name after php login.
Recommended: php server
How to display name after php login:
Login form:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Login</title> </head> <body> <form action="dologin.php" method="post"> username:<input type="text" name="username" /><br/> password:<input type="password" name="password" /> <input type="submit" value="提交"/> </form> </body> </html>
php login code:
dologin.php
<?php session_start(); $username = $_POST['username']?$_POST['username']:''; $password = $_POST['password']?$_POST['password']:''; $link = mysqli_connect('localhost', 'root', 'root', 'test'); mysqli_set_charset($link,'utf8'); $sql = "select password from user_dologin where username='".$username."'"; $res = mysqli_query($link,$sql); $result = mysqli_fetch_assoc($res); mysqli_close($link); if($result['password'] == $password){ $_SESSION['username'] = $username; $_SESSION['password'] = $password;//一般情况下session中不保存密码信息 header("Location: index.php"); }else{ header("Location: login.html");//密码错误跳回登陆网页 }
Name code displayed after login:
<?php session_start(); echo "username:".$_SESSION['username']."<br/>"; echo "password:".$_SESSION['password'];
Browser display effect:
username:zhangsan password:123456
The above is the detailed content of How to display name after php login. For more information, please follow other related articles on the PHP Chinese website!