Thanks a lot for your relaxing words.I tried the following code.
<?php
$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
?>
But i couldn't get any output.Is there any errors in this codings?