I am very new to programming, a website someone else had built for me has stopped working. I am trying to find out what it could be. I did read about it but the explanations are too complicated for me as i dont know enough about programming.
Warning: Cannot modify header information - headers already sent by (output started at /home/username/domain/index.php:3) in /home/username/domain/controllers/register.php on line 31
The code for register.php
header("Location: ".URL."register-missing"); // line 31
exit();
}
header("Location: ".URL."register");
exit();
}
The code for index.php
<?php
class Index extends Controller { // line 3
function __construct() {
parent::__construct();
}
function index() {
$this->view->render('index/index');
}
}
?>