To redirect to the user info edit page use the following code in Login page: After successful login event.
Note: Change the values listed in red to match your specific needs.
global $dal; $rs = $dal->UserTableName->Query("UserNameField='".$username."' and PasswordField='".$password."'",""); $data = db_fetch_array($rs); header("Location: tablename_edit.php?editid1=".$data["IDField"]); exit();