Logging with PHP - The Design
(Page 2 of 4 )
I sat down and came up with the following table:
create table tbl_activity_log (
fld_date int, //ex. 19990101
fld_hours text, //Which hour of the day?
fld_remote_ip text, //IP of visitor
fld_action int, //page view, click, etc
fld_special text, //which page or category?
fld_affil_num int //unique for each web site
); Someone who really knows what they're doing would have used a timestamp field rather than int fld_date, but this works for me. You could also add another column to hold the $PATH_INFO, but I decided the Special column gives me what I want.
I also defined these indexes, as I knew I would be querying on any of these fields:
INDEXES
idx_logger_date
idx_logger_hour
idx_logger_ip
idx_logger_action
idx_logger_special
idx_logger_affil_num The next step was getting the info into the tables. It would be a perfect world if all pages were served through PHP and all of your various web sites existed on one box. Unfortunately, I have an array of servers scattered all over the country, and I want to collect this info from every server for every page view 24 hours a day.
So that required me to use the 1x1 pixel GIF trick. I have a GIF on every page that looks like this:
<IMG SRC="http://www.yourserver.com/util/gif11.php?c=4&s=phpbuildercom&b=77" height=1 width=1> gif11.php is a simple script that resides on my central server. I have included the source on the next page. Since the gif is on each page, and is forced to load due to the random number at the end (the b=xxxx), a request is sent back to the central server for each and every page view.
If all of your pages and the database reside on one server, you don't need to use the GIF trick - you can insert the logging code into the header of your page.
The same logging system can be used to track click-thrus on ad banners:
<A HREF="http://www.yourserver.com/util/adclick.php?c=4&goto= * > Just replace * with the URL you want to redirect to. Again here, the $c variable should be changed for each web site.
Reporting Reporting all this information is easy with PHP - just write up some SQL, execute it and use the ShowResults class to display it.
So now the system is in place and I can run a report at any time and get statistics up to the minute for any given site.
Here's a sample report from Friday on PHPBuilder.com:
| fld_date | fld_special | impressions |
| 19990129 | forum | 267 |
| 19990129 | mail | 559 |
| 19990129 | manual | 397 |
| 19990129 | phpbuildercom | 1820 |
| 19990129 | px | 431 |
| 19990129 | siteforum | 58 |
Overall, I'm pretty impressed with this system. There's really no limit to its flexibility - in fact, I am expanding it to keep track of ad banners, and I may write up an article on that later.
Please use the sample code on the next page and tell me how you used it, or if you added anything interesting to it.
Next: Source Code >>
More MySQL Articles
More By Tim Perdue