Hello everyone!
I was wondering how can I make the below code to work:
File one.php:
<?
$myvar="hello";
include("two.php")
?>
File two.php:
<?
echo $myvar;
?>
But the "echo" in file two.php doesn't display the value of $myvar in one.php .
I would appreciate any help. Thank you all!