Hello again,
I think I have overcome the issue regarding the Store Values tab by inserting the following line for each session I would like to store...
$Authenticate->storeResult("ColumnName", "SessionName");
I hope that is correct? If you can fix the interface error that would be great but not a priority.
Instead, could you please give me a heads up on how to process a successful login without redirecting to another page? I need to perform actions in line with the authentication code (i.e. on the same php page immediately after the authentication code). For example, here is the code I used to use after the original Dreamweaver login authentication (I removed their redirect code so the processing stayed on the same page)...
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) { // Success
// Do success stuff here
} else { // Failed
// Do failed stuff here
}
Clearly that wouldn't work with your authentication code because it handles things completely different to how the original Dreamweaver authentication code did.
Pre-empting the checking for an existing user name (for a user account sign-up), I would also like to know how to keep this inline also (i.e. not redirect to a page if the user name is found and instead perform actions for found and not found immediately after your user name check code).
Basically I need to do all failed and success actions inline (on the same page) because I throw results back to javascript.
Sorry if this is a noob request, but I only stuck my head into PHP a few weeks ago!
Mark.