in the phpr Html help file I found below example.
Event: BeforeEdit
Description
Function BeforeEdit is executed before a data record is updated in the database.
Syntax
BeforeEdit($values,$where,$oldvalues,$keys,$message,$inline)
My Current Code:
$values["MyField"] = encrypt($values["MyField"]);
How is this applied to my current code?
My most current effort which does not work:
BeforeEdit($values["MyField"] = encrypt($values["MyField"],$inline=False);
Encryption code breaks the data during inline editing unless all encrypted fields are included in edit.
I prefer to edit one field only and have the other fields NOT disturbed.
ALL FEEDBACK WELCOMED. thank you.