How to reset your password for Advanced Guestbook.
Posted by kumar, Last modified by Sean Cody on 02 February 2017 11:34 AM

To retrieve the guest book password select the guest book db in PHPMyAdmin and the table book_auth. While browsing it will show you the user name. Run this sql command to change the password at the SQL query box in PHPMyAdmin

update book_auth set password=PASSWORD('pass') where username='user';

where 'pass' is your password and 'user' is the user name.