There are two files which names are test1.php and test2.php. test1.php have following lines
<?php
echo "hello world";
$a="test";
?>
test2.php have following lines
<?php
echo $a;
?>
but I can not display the $a in test2.php. What can I do to display $a value. please anyone help.