Try this piece of code (and study hard, ok?)
<?php
// reads a file from /www/diff/data.html, could be changed to eg. '../index.html' into an array
$data = file('/www/diff/data.html');
// join all elements in data-array into one string separated by newlines
$data = implode("\n", $data);
// output the data (html?)
echo $data;
?>
Be sure to contact me if you have other questions, k'?