嗨,我在 PHP 中创建了一个简单的注册和登录脚本,但是当我加载登录页面时出现这些错误。
警告:session_start() [function.session-start]:无法发送会话 cookie - 标头已由 C:\Users\s14\phase2 中的(输出开始于 C:\Users\s14\phase2\index.php:8)发送\index.php 在第 10 行
警告:session_start() [function.session-start]:无法发送会话缓存限制器 - 标头已发送(输出开始于 C:\Users\s14\phase2\index.php:8)在 C:\Users\s14\phase2 \index.php 在第 10 行
从我的代码的第 6 行到第 20 行
<form action="index.php" method=get>
<h1 align="center" style="color:gray" >Welcome to this simple application</h1>
<?php
error_reporting(E_ALL & ~E_NOTICE);
session_start();
if( $_SESSION["logging"])
{
print_secure_content();
}
else {
if(!$_SESSION["logging"])
{
$_SESSION["logging"]=true;
loginform();
}