Php question

Is it possible to sort information from .log file in alphabetical order with php?
Comments
7
in what format will the information be?
I have this php file with a .log file, which is added there with a simple include- command. Stuff in log file is just random text with <br />'s here and there
Parent
better use file() -> http://de3.php.net/manual/en/function.file.php
that reads the file plus explodes it to an array so you can skip the manual read & explode part
Parent
never worked with files on PHP yet

i didnt know there was that kind of function

soz 133 =)
Parent
php has functions for everything, it's just a matter of finding them :O)
Back to top