I have a PHP code processing some data in index.php, and the result would be shown in a variable called "$output". Would it be possible to show the variable in another PHP page (i.e. result.php)? Many thanks for help.
index.php
$output .= ''.$A.', '.$B.', '.$C.'';
result.php
showing the data from $output
$outputas aglobalvariable to use.