Two files are dependent on each other:
FILE1:
$var1 = 'Straw ' . $var2;
FILE2:
$var2 = ' berry';
$var3 = $var1;
FILE3:
// this file should include FILE1 and FILE2
How should one go about including FILE1 and FILE2 in FILE3 in a way that makes sure the three variables are properly populated?
Thank you.