复制代码 代码如下:
<?php
session_start();
$_SESSION["username"]="zhuzhao";
?>


复制代码 代码如下:
<?php
session_start();
echo $_SESSION["username"];
?>