I want to make an app system like Facebook. I just need to know how to include remote files.
Like, for example:
<?php
require "top.php";
require "side-left.php";
//Start include (sanitize with ob_start();)
require "http://blah.com/bla1/bla2.php";
//End include
require "footer.php";
?>
I'd like to figure out how to get a file list from the remote server, but it's ok if it is impossible.