OK you all have been such a great help, there is one final stage in the journey of these log files. As seen in the title, I need to send the now parsed data into a table on a database.
Now my database knowledge is limited, as displayed through my previous posts on this thread, so it may be a little tricky.
Right now, the php parses the data to an html page. When the souce is viewed, it looks like this:
Items 1 - 5 need to be put into a table, in that order. I think I need to make a database and a table before this can draw the information, is that correct?
Thanks!
Now my database knowledge is limited, as displayed through my previous posts on this thread, so it may be a little tricky.
Right now, the php parses the data to an html page. When the souce is viewed, it looks like this:
Code:
Array
(
[0] => 06/07/07 02:44:16.516 INFO Servlet.Engine.Transports : 0 PortalMonitorHandler is initialised with 'alertableLevel' set to 15 and 'maxLevel' set to 40
[1] => 06/07/07
[2] => 02:44:16.516
[3] => INFO
[4] => Servlet.Engine.Transports : 0
[5] => PortalMonitorHandler is initialised with 'alertableLevel' set to 15 and 'maxLevel' set to 40
)
Array
(
[0] => 06/07/07 02:44:21.798 INFO Servlet.Engine.Transports : 0 returning cpsManager
[1] => 06/07/07
[2] => 02:44:21.798
[3] => INFO
[4] => Servlet.Engine.Transports : 0
[5] => returning cpsManager
)
Items 1 - 5 need to be put into a table, in that order. I think I need to make a database and a table before this can draw the information, is that correct?
Thanks!