I have included Session_start() and ob_start()
; in my login page and still getting error Warning:
session_start(): Cannot send session cache limiter - headers already sent (output started at ) on line 3.
I don't know what is the problem.
I tried placing ob_start
on first line and on second line same with the Session_start.
Here is my code:
<?php
session_start();
ob_start();
error_reporting(0);
if(!empty($_SESSION["admin_prince"])){
header("location:../index.php");
}
include '../connection.php';
?>