J
|
Jane 1/9/2008 |
Hi, |
R
|
Rigmantas 2/13/2008 |
Hi, you can save searches to another table in the List page: Before process event. Save username of logged user and search keyword. To restrict access use User can see and edit their own record only option on the Advanced security settings dialog on the Security tab.
|
J
|
Jane 2/14/2008 |
Hi, global $conn; if ($_REQUEST["SearchFor"] && $_SESSION["UserID"]) { $strSQLInsert = "insert into TableName (Field1, Field2) values ('".$_SESSION["UserID"]."','".$_REQUEST["SearchFor"]."')"; db_exec($strSQLInsert,$conn); } |