is there a way for me to echo the whole database so it will display all the information held within the database?
If you know the tables, just do them one by one. If not, get the list of tables using SHOW -> Loop each table, get list of fields also using SHOW and then just echo the fields/values. Peace,