This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

PHP Help

General support and discussion of Eggdrop bots.
Post Reply
N
Nimos
Halfop
Posts: 80
Joined: Sun Apr 20, 2008 9:58 am

PHP Help

Post by Nimos »

I use a php script, which reads my logfiles and shows them in a browser...

My problem:
If I view the file, I cant see the names of the writers!

I think, it is because the names are in "< >" wich have a meaning in php, right?

does anyone know how to fix it?

Code: Select all

<?php
$log = implode("<br>",file("/logs/eggdrop.log"));
echo $log;
?>
Post Reply