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 8433203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:19:22+00:00 2026-06-10T06:19:22+00:00

I want to validate whether a user is logged in and if the user

  • 0

I want to validate whether a user is logged in and if the user is authorized to view content using php.

if($_SESSION['log'] != "1"){
if($_SESSION['type'] != "1" || $_SESSION['type'] != "2" || $_SESSION['type'] != "3"){
    header("Location: redirect.php");
}}

This works perfectly.

But I want to check all in the same statement as below. But it is not working even for a correct login.

if($_SESSION['log'] != "1" || $_SESSION['type'] != "1" || $_SESSION['type'] != "2" || $_SESSION['type'] != "3"){
    header("Location: redirect.php");
}
  • 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-10T06:19:24+00:00Added an answer on June 10, 2026 at 6:19 am

    The logic from your first set of code would indicate a slightly different if statement:

    if($_SESSION['log'] != "1" && ($_SESSION['type'] != "1" || $_SESSION['type'] != "2" || $_SESSION['type'] != "3")){
        header("Location: redirect.php");
    }
    

    In your original working code, you only test the type session info if log != 1 which means your second code may well be executing on ANY of the other clauses that would not be checked at all in the original.

    Edit Your original code:

    if($_SESSION['log'] != "1")
    {
    // This condition is ALWAYS checked.
        if($_SESSION['type'] != "1" || $_SESSION['type'] != "2" || $_SESSION['type'] != "3")
        {
        // These conditions are ONLY checked if the first check passes.
            header("Location: redirect.php");
        }
    }
    

    In your second example, all the conditions were being checked at the same time, and as you used an OR operator, if ANY of them passed, ir would evaluate to true.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello i am using post_controller hooks to validate user whether logged in or not
I want to validate a input field. The user should type in a phone
basically I want to validate whether or not a text box is a certain
I want to validate mathematical expressions using regular expression. The mathematical expression can be
I want to validate below data using regex and python. Below is the dump
i am using validation jQuery plugin and its remote option for check whether user
HI, I want to validate my urls whether they are post or get with
In the registration view of my mvc3 project i want to validate multiple input
We love jQuery validate, and really want to keep using it. However, one of
I want to validate a phone number input. The phone numbers should be mix

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.