Echo'ing the contents of a file
//Get the url of a file and echo that file - this can be a remote web site file or a local one
if (isset($_POST['url']))
{
$url_string = $_POST['url'];
$url_string = stripslashes(htmlentities(strip_tags($url_string)));
echo file_get_contents("http://$url_string");
}
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.