The error is
Parse error: syntax error, unexpected end of file in C:\xampp\htdocs\project\inc\header.inc.php on line 35
The code below is for the header file where the error is meant to be:
<?php 
include ("./inc/connect.inc.php");
session_start();
if (!isset($_SESSION["user_login"])){
}
else
{
header("location: home.php")
?>
<html>
     <head>
         <title>Memory Lane</title>
         <link rel="stylesheet" type="text/css" href="./css/style.css"
 </head>
     <body>
         <div class="HeaderMenu">
         <div id="wrapper">
             <div class="logo">
                 <img src="./Image/Memorylane_logo.jpg"/>
             </div>
             <div class="search_box"> 
                <form action="search.php" method="GET" ID="search"> 
                <input type="text" name="q" size="60" placeholder="Search ..."/>
                </form>
             </div>
             <div id="menu"> 
             <a href ="#"/>Home</a>
             <a href ="#"/>About</a>
             <a href ="#"/>Sign Up</a>
             <a href ="#"/>Sign In</a>
             </div>
         </div>
    </div>
 
     
     
     
    