I have a PHP file containing some variables and need to echo them multiple times in another file.
file1:
<?php
//some calculating going on
$var1 = 5;
$var2 = 2;
?>
file2:
<?php
echo $var1;
echo $var2;
?>
<?php
echo $var1;
echo $var2;
?>
How could this be achieved?