What's the best way to include a remote absolute url that contains PHP functions only provided that the relevant variables are configured in the following ways on PHP server?
allow_url_fopen = off
allow_url_include = off
In general, we include relative url like,
<?php include('./directory/file.php'); ?>
and absolute url remotely like,
<?php include('http://site.com/directory/file.php'); ?>