Hi, I need to know if it is possible to update a table field only if the use printed an specific successfully, I don't know if there is any function in php to control this, the scenario would be like this:
the user open the report x, at this moment the user can read it and may be choose to print it
it the user print the report and it was successfully (no paper jammed, print offline or something) then I have to do:
update table set field="ok"
end
so, it is possible to do this? how?
regards