• File: check.php
  • Full Path: /home/dealkatnwc/www/GARAGE/constant/check.php
  • Date Modified: 12/11/2023 3:34 PM
  • File size: 153 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php 

session_start();

require_once 'connect.php';

//echo $_SESSION['userId'];

if(!$_SESSION['userId']) {
	header('location:./login.php');	
} 



?>