Consider the following:
I have a large project which consists of a parent site, alongside multiple 'child' sites, to which they all share identical 'core / base' content.. (images, 'includes', stylesheets, etc.)
My intent is to have these recurring files reside on 1 particular server, and always reference the same path when in need.
This would result in any modified 'core' files (images, 'includes', stylesheets, etc.) affecting all cross references.
What's the best way to go about at this?
currently, (possibly temporarily) I'm using the following .. <?php readfile('http://remotepath.com/_core/includes/top_nav.php'); ?>
Which is an attempt, at nearest solution to <?php include('/filepath/'); ?>
This brings up an obvious issue - using the following to target current page, will no longer work.. Secondly, is retrieving the content via 'readfile' insecure?
<?php $url = basename($_SERVER['SCRIPT_FILENAME']); echo $url; ?>
this will of course return the path of that file, 'top_nav.php'
How can I get the value of the url / web address using a similar method?
Any insight would be well appreciated! Cheers.