I *believe* that include_once will be all that is necessary. However if that doesn't stop the problem, you can use a DEFINE and at the top of each script:

if (!defined(FILE1)) {
  include_once 'file1.php';
}

---------- file1.php -------------
define ('FILE1', TRUE);

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to