Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Grey: "We're a two-person company, it's just me an my wife. I'm the technical guru, and she handles the business operations. I have to know a lot about MySQL, but that's much too technical for her. I have frequently had to setup CGI scripts (I code in Perl) so she can manage some of our tables (suppliers, manufacturers, etc).

I discovered PHP Generator a couple of days ago, tried the free version,and within a few hours I had purchased the Pro version (as well as SQL Maestro for MySQL).

Today I am completing the conversion of the last of my custom table managers to PHP Generator. This is eliminating several thousand lines of code that I don't have to support any more!

Thanks for this fantastic product".

George Westrup: "I have saved so much time using your products. Also you are quick to respond to every question I have had. Thanks for the great support".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

OnBeforeLogout

This event occurs just before a user logged out from the application by pressing the Logout button or when the inactivity timeout is reached.

 

Signature:

function OnBeforeLogout ($userName, $connection)

 

Parameters:

$userName

The name of the logged user.

$connection

An instance of the EngConnection class.

 

Example

Among other things this event can be used for tracking the user activity. The code snippet below inserts a new record containing user name and the action into the 'activity_log' table.

 

$connection->ExecSQL(

  "INSERT INTO activity_log (user_name, action) values ('$userName', 'logout')"

);

 

See also: OnAfterLogin and OnAfterFailedLoginAttempt events



Prev Return to chapter overview Next