MyBB Community Forums

Full Version: Output the data field of a user to the admin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Community,

let me ask you a question:

Given is with every user:
* the date of the column request in the column "timestamp_column"

If the admin has the user displayed, how can the user be shown the above individual user data?

If you take e.g. {$mybb->user['timestamp_column']} the own number of calls is shown, but not the number of the user who called.

How and where should it be defined that the admin is shown the data that is entered for the user?

Thanks in advance for your help.

Addendum:

Problem solved! Solution in template:
<?php echo my_date($mybb->settings['dateformat'], $memprofile['timestamp_column']); ?>