我登录一个用户,并在我的 PHP 脚本中创建一个会话变量并为其分配用户名(因为它是唯一的)。
<?php
session_start();
//$username= getting username from database and all after loggin
$_SESSION['user_of_mywebsie']=$username;
// using $username now
现在这是正确和安全的方式吗?如果没有,可以做什么?现在会话是用其中的用户名创建的..
$sql_query=mysql_query("SELECT * FROM people WHERE username='$_SESSION['user_of_mywebsite']'");
while($row=mysql_fetch_assoc($sql_query))
{
$name=$row['name'];
$profile_pic=$row['pro_pic_location'];
}
//now i will use $name and $profile_pic furthur