Hi great minds!
I am building an HR software and I will like to implement a special feature which is as below :-
~> When an ordinary employee/staff updates his information, I would like it to persist maybe in a temporary table,
~> Notify the admin of the changes,
~> Admin decides to approve or rejects the change and the user gets a notification of that effect.
What I had thought I would do
~> Create a Temporary table (Like a duplicate of the real table(employees) )
~> When the employee make changes, it saves on this table not the real table,
~> The admin/HR gets notification of the changes made
~> He approves/Reject, and that record on this table initiated by that ordinary employee is deleted if rejected but transferred to the main table if approved.
-- I haven't tried my imagined solution yet but I know great minds such as yours might have better way or perhaps a package that does an integral part of this
cheers