Jump to content

Audit trail


jkkenzie

Recommended Posts

Store the users details and date modified in another database table.

I assume all users have a login and a unique ID.

For example you may have a table called stockInfo that contains records that users can update via forms to change the level of stock in a shop. To track updates on records you could have a stockUserAudit table containing the stockId as a foreign key from the stockInfo table, a userId for which user updated the stock record and a datetime field to capture the date of modification. You could easily create reports from this structure.

Link to comment
https://forums.phpfreaks.com/topic/117488-audit-trail/#findComment-604337
Share on other sites

Am still an infant in php programming.

 

Ill find out about .plc files. Thanks.

 

Am used to VBA where i write an audit of processes (that the user performed) to a text file. That is what am trying to try in php.

 

Does an audit trial involve DOUBLE DATA entry? i.e e.g saving a record on one table and saving audit trail of that record on another table WHEN the user saves a record?

 

Does this mean when am saving a record , i should have the logged in user details, with the process name ready to be saved on another table?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/117488-audit-trail/#findComment-604560
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.