I would much appreciate some help with this. I'm sure it isnt too complex, but im not exactly posetive how.
<?php
//open and read all the file
$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);