Login   Register  
PHP Classes
elePHPant
Icontem

File: denied.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-10-27 13:23
Size: 137 bytes
 

Contents

Class file image Download
<?php

session_start
();

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

?>