【发布时间】:2010-09-30 23:09:41
【问题描述】:
我正在尝试建立一个会话,但我收到了一个标题错误,尽管据我所知,我告诉它在发送标题之前启动会话。这里的任何帮助都会很有用。
<?php
ob_start();
session_start();
$_SESSION['active'] = 1;
ob_end_flush();
?>
<html>
<body>
2009c Christ Redeemer Catholic Church
</body>
</html>
警告:session_start() [function.session-start]:无法发送会话 cookie - 标头已由(输出开始于 /home/content/k/u/r/kuriomister/html/temp/church/index. php:1) 在 /home/content/k/u/r/kuriomister/html/temp/church/index.php 第 3 行
警告:session_start() [function.session-start]:无法发送会话缓存限制器 - 标头已发送(输出开始于 /home/content/k/u/r/kuriomister/html/temp/church/index. php:1) 在 /home/content/k/u/r/kuriomister/html/temp/church/index.php 第 3 行
【问题讨论】: