Hello all.
I have a program that if a member bypasses make their payment, it recorder their
IP, Date, and time into a log file.
I'm setting up an admin page to login and view the contents.
Its listed in the text file as 19.254.63.98 | Oct 3 2002 | 9:58 |
I open the directory like this.
opendir (LOG, "$cgiroot/thieftlog");@files = grep { /.txt/ } readdir(DIR);close (DIR);
How do I print out the contents of the txt file in html format?
I want it to list the information on lines in a table.
IP Date Time.
Thanks and God Bless
Dan