Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Adding a registration form to WordPress page

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #25402
    mark
    Member

    I’m trying to password protect some WordPress pages without using a plugin. I wrote a few pages in PHP make a simple user login/registration form. Just to make sure it worked, I threw it up on the web http://mbh.fivepotato.com/test/index.php . It is made up of 6 files: index.php, login.php, registration.php, activate.php, member.php, and logout.php

    Now I want to incorporate that form into a page on my WordPress site called "login". The member.php file is protected using the code:

    Code:
    session_start();

    if($_SESSION[‘username’])

    echo “Welcome, “.$_SESSION[‘username’].”!
    Logout“;

    else
    die(“You must be logged in!”);

    I was hoping that I could use some conditional statements and the "session_start(); if($SESSION)" hook to protect the pages I only want available to members who register through that form. Unfortunately I haven’t had any success. Does anyone have suggestions for how I could go about this?

Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.