URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       Hack Community
  HTML https://roshacks.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Web and Scripting
       *****************************************************
       #Post#: 513--------------------------------------------------
       [PHP] Open TXT file using PHP
   DIR By: pipo1337
       Date: May 13, 2018, 7:30 am
       ---------------------------------------------------------
       --- Code ---
       <?php
       $file = fopen("yourfile.txt","r");
       
       while(! feof($file))
       {
       echo fgets($file). "";
       }
       
       fclose($file);
       ?>
       --- End Code ---
       *****************************************************
       Page 1 of 1