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
By: pipo1337 Date: May 13, 2018, 7:30 am
---------------------------------------------------------
[code]<?php
$file = fopen("yourfile.txt","r");
while(! feof($file))
{
echo fgets($file). "";
}
fclose($file);
?> [/code]
*****************************************************