Forum Moderators: coopster
Thanks a lot!
include $_SERVER['DOCUMENT_ROOT'].'the/path_to_the/file.php';
(If they are on the same server.)
include 'http://www.example.com/the/path_to_the/file.php';
(If they are on different servers.)
You can switch to require, include_once, or require_once depending on your exact needs.