If you are using PHP to build your pages, you can access any of the following objects, which are created by the lockbox system:
$LB_MEM - Object of the members table for the logged in user. Reference any field in the members table.
Example:
<?php echo $LB_MEM->name; ?>
<?php echo $LB_MEM->username; ?>
$LB_BOX - Object of the lockbox table for the logged in user. Reference any field in the lockbox table.
Example:
<?php echo $LB_BOX->name; ?>
$LB_PACKAGE - Object of the packages table for the logged in user. Reference any field in the packages table.
Examples:
<?php echo $LB_PACKAGE->name; ?>
If you prefer to work with arrays, convert objects to arrays like this:
(array)$LB_MEM
Example:
<?php echo $LB_MEM['name']; ?>
<?php echo $LB_MEM['username']; ?>
etc etc