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

  • Home
  • SEARCH
  • 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 7902015
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T09:23:02+00:00 2026-06-03T09:23:02+00:00

This PHP IF statement always results in ‘false’ and I can’t figure out why.

  • 0

This PHP IF statement always results in ‘false’ and I can’t figure out why. Any help is greatly appreciated.

Where $i is passed in as 0 and $j is passed in as 4 (these numbers were verified in the POST)

$i = $_POST['entry'];
$j = $_POST['j'];

function tabs() {
  if ($i < $j)
    echo 'i is less than j';
  else
    echo 'false';
};
  • 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-03T09:23:05+00:00Added an answer on June 3, 2026 at 9:23 am

    $i and $j are not within the visible scope of tabs():

    … [W]ithin user-defined functions a local function scope is introduced. Any variable used inside a function is by default limited to the local function scope.

    Pass them as parameters or make them global (the first being the preferred way):

    Parameters

    $i = $_POST['entry'];
    $j = $_POST['j'];
    
    function tabs($i, $j) {
      if ($i < $j)
        echo 'i is less than j';
      else
        echo 'false';
    };
    
    tabs($i, $j);
    

    Global

    $i = $_POST['entry'];
    $j = $_POST['j'];
    
    function tabs() {
      global $i, $j;
      if ($i < $j)
        echo 'i is less than j';
      else
        echo 'false';
    };
    
    tabs();
    

    EDIT
    Alternatively, you can access the superglobal $_POST array from within the tabs() function directly, or $_GLOBALS['i'] and $_GLOBALS['j'], respectively.

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

Sidebar

Related Questions

I need help finishing this statement. It is frustrating that two of the PHP
How would you do this PHP switch statement? Also note that these are much
I don't understand why this statement in PHP echos 'whaaa?' -- (0x0F | 0xF0)
I have a php file which has a require_once Statement (?) this file is
I know I'm doing something wrong, but I can't figure out what I'm doing
I am trying to figure out how to capture one statement if the other
I'm using prepared statements and MySQLi, and am currently getting this error. PHP Catchable
php -v gives this PHP Warning: PHP Startup: memcache: Unable to initialize module Module
I found this PHP code in an app I have to modify... $links =
I am using this PHP code: if (isset($_GET['c'])) { $pages = array(home, upload, signup);

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.