|
$_SESSION["UserID"] |
Logged user ID |
|
$_SESSION["GroupID"] |
GroupID that user belongs to. Populated if User Group Security turned on. |
|
$_SESSION["language"] |
|
|
$_SESSION["MyURL"] |
If user is trying to access one of password-protected pages directly
i.e. pagename_edit.php?editid1=3 this page address is saved in
$_SESSION["MyURL"] variable and user is redirected to the
login page.
After successful login user will be redirected to that page. |
|
$_SESSION["AccessLevel"] |
ACCESS_LEVEL_GUEST - guest user
ACCESS_LEVEL_USER - regular user
ACCESS_LEVEL_ADMINGROUP - user belongs to the admin group
ACCESS_LEVEL_ADMIN - obsolete
|
|
$_SESSION["OwnerID"] |
OwnerID value from the login table. Obsolete |
|
$_SESSION["_<table name>_OwnerID"] |
OwnerID value from the login table that applies to <table name> table. |
|
$_SESSION["<table name>_search"] |
0 - show all records
1 - basic search
2 - advanced search |
|
$_SESSION["<table name>_searchfield"] |
Basic search field |
|
$_SESSION[$strTableName."_searchoption"] |
Basic search option (Equals, Contains, etc) |
|
$_SESSION[$strTableName."_searchfor"] |
Basic search for phrase |
|
$_SESSION[$strTableName."_pagenumber"] |
Current page number |
|
$_SESSION[$strTableName."_asearchnot"] |
Advanced search - array with NOT option value for each field |
|
$_SESSION[$strTableName."_asearchopt"] |
Advanced search - array with search option value for each field
(Equals, Contains etc) |
|
$_SESSION[$strTableName."_asearchfor"] |
Advanced search - array with with search for value for each field |
|
$_SESSION[$strTableName."_asearchfor2"] |
Advanced search - array with with second search for value for each
field (Between search) |
|
$_SESSION[$strTableName."_asearchfortype"] |
AND or OR search |
|
$_SESSION[$strTableName."_mastertable"] |
Master table name |
|
$_SESSION[$strTableName."_masterkey".$i] |
Master table foreign key values |
|
$_SESSION[$strTableName."_orderby"] |
Order by clause (aFieldName or dFieldName). "a" means
ascending, "b" means descending sort order. |
|
$_SESSION[$strTableName."_pagesize"] |
Number of records per page |
|
$_SESSION[$strTableName."_sql"] |
SQL query without WHERE and ORDER BY. Populated on the list page to
be used on Print/Export pages. |
|
$_SESSION[$strTableName."_where"] |
WHERE clause. Populated on the list page to be used on Print/Export
pages. |
|
$_SESSION[$strTableName."_order"] |
ORDER By clause ("Order by make asc"). Populated on the
list page to be used on Print/Export pages. |
|
$_SESSION["BackURL"] |
URL to return after password was changed |
|
$_SESSION[$strTableName."_SelectedSQL"] |
Export page - SQL query when page is in "export selected" mode |
|
$_SESSION[$strTableName."_SelectedWhere"] |
Export page - WHERE clause when page is in "export selected"
mode |