Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8139343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:47:46+00:00 2026-06-06T11:47:46+00:00

i have this simple question please. I have this part of code which sets

  • 0

i have this simple question please.

I have this part of code which sets my session:

if($count==1){
        // Register $myusername, $mypassword and redirect to file "admin.php"
        session_register("admin");
        session_register("password");
        $_SESSION['name']= $myusername;
        header("location:index.php");
    }

And this is what i put in every file to protect it :

<?php
session_start(); //Start the session
define(ADMIN,$_SESSION['name']); //Get the user name from the previously registered super global variable
if(isset($_SESSION['admin'])){//If session not registered
header("location:login.php"); // Redirect to login.php page
}
else //Continue to current page
header( 'Content-Type: text/html; charset=utf-8' );
?>

I need to change the session name because i already have one like this.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T11:47:47+00:00Added an answer on June 6, 2026 at 11:47 am

    First of all, stop to use the session_register() function, it has been DEPRECATED and REMOVED as of PHP 5.4.0.

    You should write the first part like below:

    if($count==1){
        // Register $myusername, $mypassword and redirect to file "admin.php"
        $_SESSION['admin']    = $admin;
        $_SESSION['password'] = $password;
        $_SESSION['name']     = $myusername;
    
        header("location: index.php");
    }
    

    Analysing the second part, the if/else logic is inverted. This is the right logic.

    session_start(); //Start the session
    
    //Get the user name from the previously registered super global variable
    define(ADMIN, $_SESSION['name']); 
    
    if( isset($_SESSION['admin']) )
    {
        //Continue to current page
        header( 'Content-Type: text/html; charset=utf-8' );
    }
    else
    {
        //If session not registered
        header("location:login.php"); // Redirect to login.php page
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

may be too simple groovy question but....please help i have a list like this:
I have a simple question. I have this bitmap Is there a way with
this is a simple question. I have a form that is being validated using
hopefully a pretty simple question this time. I have a Select method in a
I know this is a simple question for someone out there, but I have
I'm rather new to WPF, so maybe this is a simple question. I have
this time i have a simple question: I have one table, related with himself
This is a simple htaccess question for experts but I have been trying to
Okay this may be a simple question but I have yet to come with
This is hopefully a simple question: I have an OpenGL texture and would like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.