All I want to do is print a file out to the screen via the web browser. this is an example of the code I am using to do this. The file I am printing is just a plain ASCII text file created with VI.
<html>
<head>
<title>Example</title>
</head>
<body>
<?php
$display=file("test.txt");
echo $display;
?>
</body>
</html>
This prints out "ARRAY" in my web-browser"... not sure why though....