try:
1.php
<?
session_start();
$_SESSION['fusername'] = "www";
?>2.php
<?
session_start();
echo $_SESSION['fusername'];   ///////////打印不出来
?>