php

Problems   problems bugs undesirable_behaviour gotcha

include_once variable problem   include modules

File1.php

$x = 25;
include_once "file2.php";
echo "tada, \$x = $x";

File2.php

$x = 50;