I need to echo entire content of included file. I have tried the below:
echo \"\";
echo \"inc
Just do:
include("http://www.mysite.com/script.php");
Or:
echo file_get_contents("http://www.mysite.com/script.php");
Notes:
allow_url_fopen to be on for your PHP installation. Some hosts turn it off.