• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Request] PHP to display a txt file

Michael Orsino

Premium User
Premium User
Support Team
Joined
Nov 15, 2007
Messages
864
Solutions
10
Reaction score
451
Location
Western Australia
I would like a page that will display the otserv admin logs.
Would this work? If not, care to help me out?

Code:
<?PHP
$content = file_get_contents("directory/to/server/data/logs/GM soandso.txt");
if($content != FALSE)
	$main_content .= $content;
else
	$main_content .= 'Can not load file <b>GM soandso.txt</b> or file is empty.';
?>
 
Back
Top