I recently needed to do this for a client to customise and merge the logged data from Apache into a presentable format. A by-product of this was the ability to also roll the log file on a daily basis.I found limited information regarding how to do this most of...
How to's, Web Platforms
|
Posted byOliveron 06 Mar 2008
|
1
There are two ‘main’ forms of arrays within PHP, these are numerical (or zero based) and associative arrays. Creating a new array The code below demonstrates creating a new array: $arr = new array(); This is the same for numerical and associative arrays. Numerical Arrays You can think of...
Web Development
|
Posted byOliveron 13 Jul 2006
|
0