Using this script:
<?php // get a web page into an array and print it out
$fcontents = file ('http://xww.eds.xerox.com/');
while (list ($line_num, $line) = each ($fcontents)) {
echo , htmlspecialchars ($line), "<br>\n";
}
// get a web page into a string
$fcontents = implode ('', file ('http://xww.eds.xerox.com/'));
?>
How would l get the Fcontents to not just print out but display the HTML the way it is supposed to be displayed...
Any help would be great thanks.....
--Craig