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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:12:03+00:00 2026-05-11T07:12:03+00:00

I am creating a multipage form in PHP, using a session. The $stage variable

  • 0

I am creating a multipage form in PHP, using a session. The $stage variable tracks the user’s progress in filling out the form, (UPDATE) and is normally set in $_POST at each stage of the form.

On the second page (stage 2), the form’s submit button gets its value like this:

echo '<input type="hidden" name="stage" value="'; echo $stage + 1; echo '" />; 

That works fine – $stage + 1 evaluates to 3 if I’m on page 2. But since I’m doing this more than once, I decided to pull this code out into a function, which I defined at the top of my code, before $stage is mentioned.

In the same spot where I previously used the code above, I call the function. I have verified that the function’s code is the same, but now $stage + 1 evaluates to 1.

Is PHP evaluating my variable when the function is defined, rather than when it’s called? If so, how can I prevent this?

Update 1

To test this theory, I set $stage = 2 before defining my function, but it still evaluates to 1 when I call the function. What’s going on?

Problem Solved

Thanks to everyone who suggested variable scope as the culprit – I’m slapping my forehead now. $stage was a global variable, and I didn’t call it $GLOBAL_stage, like I usually do, to prevent this sort of problem.

I added global $stage; to the function definition and it works fine. 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. 2026-05-11T07:12:03+00:00Added an answer on May 11, 2026 at 7:12 am

    No, PHP will evaluate your variable when the function is called. But your function has a local variable scope, i.e. without seeing your function I’d guess that you are operating on a local variable. You can import global variables into you function although this is discouraged:

    function myfunction() {     global $stage;     ... } 

    It’s really hard to say without knowledge of your code, but I’d go on to guess that you are using ‘register globals’ to inject your form parameters into global PHP variables ($state, in this case). You might want to consider turning register_globals off because it really is a security risk and using the so-called superglobal variables instead.


    edit

    Ok, so you’re seeing your stage in the $_POST array. Still wildly guessing about your function, you might try the following:

    function my_insert_stage_param() {     global $stage;     echo '<input type='hidden' name='stage' value='';     echo $_POST['stage'] + 1;     echo '' />'; } 

    Suberglobals like the $_POST array don’t need to be declared with global.

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

Sidebar

Ask A Question

Stats

  • Questions 169k
  • Answers 169k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer IIRC the phoneME project includes an implementation of GZIPInputStream. I'm… May 12, 2026 at 1:57 pm
  • Editorial Team
    Editorial Team added an answer You should be able to just add a Run Script… May 12, 2026 at 1:57 pm
  • Editorial Team
    Editorial Team added an answer I'm not sure what you mean by virtualize, but if… May 12, 2026 at 1:57 pm

Related Questions

How do I attach an onclick event to a link_to_function such that clicking on
In one form I am creating a territory and editing multiple users. The "user_attributes"
I am creating a web application which has a few management screens, where a
i am self-studying asp.net and was trying some small projects to help understand the

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.