PHP Classes

File: denied.php

Recommend this page to a friend!
  Classes of Peter   MySQL Login   denied.php   Download  
File: denied.php
Role: Example script
Content type: text/plain
Description: Example
Class: MySQL Login
Authenticate users with records in a MySQL table
Author: By
Last change:
Date: 18 years ago
Size: 137 bytes
 

Contents

Class file image Download
<?php

session_start
();

if ((!
$_SESSION['loggedin']) || ($_SESSION['loggedin'] == 0)) {
    print
"You're not logged in..!";
    }

?>