Results 1 to 7 of 7

Thread: Day 19 - Members Area - Become PHP Expert in 30 days

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #6
    Join Date
    Nov 2004
    Location
    India
    Posts
    65

    Default

    http://php.flashwebhost.com/stefin/tasks.php

    Welcome to members only page. This page is under construction.


    Click here to logout

    PHP Code:

    <?php
    session_start
    ();
    if (!isset(
    $_SESSION['AUTH_USER'])) {   

    echo 
    "User is not logged in<br>";    
    echo 
    "<a href=login.html>click here</a> to go to login page";  
    exit;
    }

    echo 
    "<h1>Welcome to members only page. This page is under construction.</h1>";
    echo 
    "<p><a href='logout.php'>Click here to logout</a>";
    Last edited by stefin; 08-12-2014 at 04:58 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •