Hi all
I'm trying to update a field Exported to"1" when i perform an export (just for that record or multiple selected)
i've tried various update query's in the export page events but unable to get it to work.
Any ideas ?
Many thanks
global $conn;
$strUpdate = "
UPDATE tbl_Import
SET Exported = 1
WHERE ImportID = '".$values["ImportID"]."')";
db_exec($strUpdate,$conn);
I'm getting a Undefined variable: values Error on the Export Page