PHP Classes

File: main/user.php

Recommend this page to a friend!
  Classes of Zamani   PHP Login System with Email Verification   main/user.php   Download  
File: main/user.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Login System with Email Verification
Register and login users activated using email
Author: By
Last change:
Date: 2 years ago
Size: 177 bytes
 

Contents

Class file image Download
<?php
require_once '../class/user.php';
require_once
'config.php';
if (
$_SESSION['user']['id'] !== '') {
   
$user->userPage();
} else {
   
header('Location: index.php');
}
?>