This topic is locked

More Complex Audit Log

8/1/2008 5:01:23 AM
PHPRunner General questions
K
kenny_robb author

I already have an audit log working that tracks Additions, deletions and edits on all my tables.
It tracks some basic stuff like who did the action and when and what type of action it was. I now want ot be able to go one stage further and track what it was they did. If they chenage a fiels I want to be able to capture the actual detail that was changed, added or deleted.
I also want to be able to track who is searching and for what. I have the same code working for the advanced search but it doesn't seen to work for the basis search....
Thanks in anticipation
kenny

J
Jane 8/1/2008

Hi,
you need to expand your code in the events.

To save all searches use List page: Before process event.

Here is a sample:

if (@$_REQUEST["a"]=="search")

{

//your code here

}