Jump to content

Import variable from one php file to another


linuxsoftca
Go to solution Solved by linuxsoftca,

Recommended Posts

Hi,

 

I don't know what i am doing wrong. I have two php files, Page1.php has a summation ($Profit 2012) and i want to import the result of that variable into a Page2.php.

 

 

Page1.php

 

<?PHP

 

$Gain2012 = 500;

$Loss2012 = 200;

$Profit2012 = $Gain2012 - $Loss2012;

 

?>

 

 

Page2.php

 

<?PHP

 

$Profit2012 = ob_start(); include 'Page1.php'; ob_end_clean(); $Profit;

 

$Gain2013 = 100;

$Loss2013 = 50;

$Profit2013 = $Gain2013 - $Loss2013;

$ProfitSum = $Profit2012 + $Profit2013;

 

?>

 

As output for $Profit2012 in Page2.php, i get the data 1 instead of 300.
Link to comment
Share on other sites

 

Hi,
 
I don't know what i am doing wrong. I have two php files, Page1.php has a summation ($Profit 2012) and i want to import the result of that variable into a Page2.php.
 
 
Page1.php
 
<?PHP
 
$Gain2012 = 500;
$Loss2012 = 200;
$Profit2012 = $Gain2012 - $Loss2012;
 
?>
 
 
Page2.php
 
<?PHP
 
$Profit2012 = ob_start(); include 'Page1.php'; ob_end_clean(); $Profit;
 
$Gain2013 = 100;
$Loss2013 = 50;
$Profit2013 = $Gain2013 - $Loss2013;
$ProfitSum = $Profit2012 + $Profit2013;
 
?>
 
As output for $Profit2012 in Page2.php, i get the data 1 instead of 300.

$Profit2012 = ob_start(); include 'Page1.php'; ob_end_clean(); $Profit;

 

What is all this jumble?

 

Just use $Profit2012 include 'Page1.php';

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.