23.03.2011, 05:02
Quote:
<?php
$file = "/folder/tlog.ini"; //sets the files location $f = fopen($file, "r"); //opens the file for reading only while ( $line = fgets($f, 1000) ) { //specifies the line to read print $line; //prints the lines contents to the browser } ?> |
There is
PHP код:
hi