J
|
Jane 6/11/2008 |
Hi, global $conn; $rs = db_query("select RecordID from TableName order by FieldName desc",$conn); $data = db_fetch_array($rs); $id = $data["RecordID"]; header("Location: TableName_view.php?editid1=".$id); exit(); |
B
|
bochaka author 6/11/2008 |
Hi, select ID of latest added record in your AfterSuccessfulLogin event and redirect to the view page of this record:
|