同一个页面require进来的东西就没法读session~怪
就是这个页子require近来的东西读不到session~这是怎么回事
上面那个echo 能打印出来
create_team.html中的就无法echo出来
---------------------------------------------------------------
<?php
session_start();
echo $userid;
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=??????">
<title>无标题文档</title>
</head>
<body>
<?php
require("http://***.***.cn/create_team.html");
?>
</body>
</html>