Apply Section In PHP (Section In Header)

<?php
include("db.php");
error_reporting(0);
ob_start();
session_start();
if((!isset($_SESSION['email'])) && (!isset($_SESSION['password']))){
header('Location: admin-login.php');
}

?> 

Post a Comment

0 Comments