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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:31:59+00:00 2026-06-13T11:31:59+00:00

I have 3 files. I will give you the exact example: a.php <form action=b.php

  • 0

I have 3 files.
I will give you the exact example:

a.php

<form action="b.php" method="POST">

Enter age:
<input type="text" name="age"><br>
<input type="submit" value="Save">
</form>

b.php

<?php
$age=$_POST["age"];
if (is_numeric($age))
{
    header("Location: c.php");
    exit();
}
else
{
    echo "Age invalid!";
}
?>

c.php

<?php
//i want to use the $age variable here   
echo $age;
?>

How can I use the $age variable from b.php in c.php?

I also tried to session_start(); at file b.php and use $_SESSION["age"]=$_POST["age"]; in b.php and then $_SESSION["age"] in c.php in stead of $age and it still didn’t work.

I also tried include but didn’t get me anywhere either… maybe I didn’t use it correctly.

  • 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-13T11:32:00+00:00Added an answer on June 13, 2026 at 11:32 am

    The issue is that in file b.php, you are not sending the value of age to c.php.

    If, in b.php, you did this:

     session_start();
     $_SESSION["age"] = $_POST["age"];
    

    Then, in c.php, you did this:

     session_start();
     $age = $_SESSION["age"];
     echo $age;
    

    It will work properly.

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

Sidebar

Related Questions

I'm about to walk into a project that will have files (mostly PHP) behind
I want to save files which will have name with danish characters, for example
I have created an .htaccess files that will prevent anyone from accessing a file
I have some static resources (images and HTML files) that will be localized. One
I have the below program that will move files from one directory to other.
I have created a script that will upload files to a general uploads folder,
I have been searching for a command that will return files from the current
I have client/server application where the client app will open files. Those files get
I have the following code which will generate two pdf files containing plots to
I have an application that will mail users attachments of text files. Receiving users

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.