To retrive the guestbook 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.