normal ises so:
-----test.php-----
$var = 1;
$var2= 2;
------------------
-----include.php----
$var++;
$var1--;
--------------------
-----index.php-----
include('test.php');
include('include.php');
echo "$var \n $var1";
------------------------
ausgabe:
----------
2
1
----------
HTH
|