File Directory Php

   $fh = fopen("./demoCSV.csv", "rt");
   while (!feof($fh)) 
      echo fgets($fh);
   fclose($fh);
?>