|
yes, that concept will work... I wrote something similar not to long ago.
script1.php
[PHP]
<?php
$area = "INDEX";
include ("script2.php");
?>
[/PHP]
script2.php
[PHP]
<?php
print $area;
?>
[/PHP]
output: INDEX
__________________
http://jasonpowers.net
"There are a thousand hacking at the branches of evil to one who is striking at the root."
|