hi,
i want player can check balance history
for example :
when player login to panel and click on for example (balance history) can see all the history about balance
how can i do for that? ( with php )
Use LogsEvent in the API to retrieve event logs for the date requested. Loop through each line looking for the desired data. The first 19 characters contain the date and time. Followed by a vertical bar "|" character, the event type, another "|" and then the event details. So pull out the "Account" event types that have the player's name in the details section.
best2pmc wrote:hi,
i want player can check balance history
for example :
when player login to panel and click on for example (balance history) can see all the history about balance
how can i do for that? ( with php )