我對編程非常陌生,其他人爲我編譯的網站已停止工作。我試圖找出它可能是什麼。我確實讀過它,但對於我來說,解釋過於複雜,因爲我對編程知之甚少。無法修改標題信息,這個php代碼有什麼問題
警告:不能更改頭信息 - 已經 發送的報頭 (輸出開始/home/username/domain/index.php:3)/home/username/domain/controllers/register.php上線31
爲register.php代碼
header("Location: ".URL."register-missing"); // line 31
exit();
}
header("Location: ".URL."register");
exit();
}
爲的index.php
代碼<?php
class Index extends Controller { // line 3
function __construct() {
parent::__construct();
}
function index() {
$this->view->render('index/index');
}
}
?>