if you want to review the latest PMs in phpMyAdmin, just paste this:

Code
SELECT t2.TOPIC_SUBJECT AS Subject, 
t3.USER_DISPLAY_NAME AS PMer, 
t1.POST_BODY AS Body, 
FROM_UNIXTIME( t1.POST_TIME,'%M %e, %Y - %h:%i %p') AS PMOn
FROM ubbt_PRIVATE_MESSAGE_POSTS AS t1,
ubbt_PRIVATE_MESSAGE_TOPICS as t2, 
ubbt_USERS as t3 
WHERE t1.TOPIC_ID=t2.TOPIC_ID AND t1.USER_ID=t3.USER_ID
ORDER BY t1.POST_TIME DESC
LIMIT 50

into a query (where ubbt_ is replaced by your board's prefix, limit 50 can be changed too) window. this will display the most recent xx (50 for this example) PM replies (messages).

you could even save this in your Cpanel, DB tools, queries stuff, but then ALL admins have the ability to use it.

just an fyi wink