J
|
Jane 9/16/2008 |
Hi, global $conn; $strUpdate = "update TableName set deleted=1 where ".$where; db_exec($strUpdate,$conn); return false;
|
M
|
mattd1 author 9/16/2008 |
Thank you Jane. |
J
|
Jane 9/17/2008 |
Hi, "deleted=0 OR ActionUserID=".$_SESSION["tmpActionUserID"]
global $conn; if (@$_REQUEST["editid1"] { $str = "select UserID from TableName where RecordID=".$_REQUEST["editid1"]; $rs = db_queyr($str,$conn); $data = db_fetch_array($rs); $_SESSION["tmpActionUserID"] = $data["UserID"]; } |
M
|
mattd1 author 9/17/2008 |
Jane, thanks. Perhaps I am being dim, or my long explanations are confusing. |
J
|
Jane 9/17/2008 |
Matt, |