php file reader?
#4

PHP код:
<?php
$file 
"/folder/tlog.ini"//sets the files location
$f fopen($file"r"); //opens the file for reading only
while ( $line fgets($f1000) ) { //loops through the files contents
print $line//prints the contents to the browser
}
?>
Let me know if this is what you wanted. If not, I can help you out with what your going for. I think I know what your trying it accomplish.

Also @ Steven : He asked for PHP coding not MySQL! Obviously he has his script setup to store all chat into a file (not MySQL) and would like to use that file to display its contents into a web page for live viewing for people that arent in game.

Nice idea, makes your website interactive with your server!
Reply


Messages In This Thread
php file reader? - by sciman001 - 23.03.2011, 03:50
Re: php file reader? - by Steven82 - 23.03.2011, 04:40
Re: php file reader? - by XFlawless - 23.03.2011, 04:44
Re: php file reader? - by SuperS82 - 23.03.2011, 04:59
Re: php file reader? - by Steven82 - 23.03.2011, 05:02
Re: php file reader? - by sciman001 - 23.03.2011, 12:20
Re: php file reader? - by Mike Garber - 23.03.2011, 12:32
Re: php file reader? - by sciman001 - 23.03.2011, 12:39
Re: php file reader? - by sciman001 - 23.03.2011, 22:05
Re: php file reader? - by sciman001 - 23.03.2011, 22:47

Forum Jump:


Users browsing this thread: 1 Guest(s)