PHP Classes

File: success.php

Recommend this page to a friend!
  Classes of Peter   MySQL Login   success.php   Download  
File: success.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: 103 bytes
 

Contents

Class file image Download
<?php

session_start
();

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

?>