How do you find the last changed tables in phpmyadmin?

When something went wrong with your website or you just want to know which tables are recently changed you can execute the following sql command in PhpMyAdmin:

SHOW TABLE STATUS LIKE ‘%’;

good luck!