J
|
Jane 5/11/2009 |
Hi, tablename_list.php?recordid={$FieldName_value}&action=update
|
|
jwoker author 5/11/2009 |
Not sure what you mean by "check" the variables in the before process add event? |
J
|
Jane 5/12/2009 |
Hi, tablename_list.php?recordid={$FieldName_value}&action=update
global $conn; if (@$_REQUEST["recordid"] && @$_REQUEST["action"]=="update") { $strUpdate = "update task set task_completed=1 where FieldName=".$_REQUEST["recordid"]; db_exec($strUpdate,$conn); } |