I would like to add an 'Exit Room' button in my chat rooms. The only way I see for someone to exit the room is to either close the browser window or logout... Which in most cases is the same thing.
I'm not sure exactly what you want the exit room button to do but you could add a button which just links back to the roomlist page. The button code is in sources/frame.php.
I would like to ad a web page where people can go to see a list every room and who is each one. Any suggestions how I might do this? I am fairly proficient with php.
To get the list of rooms you can just select it out of the rooms table in the database. Make sure the type of the room is 1 (2 means it's private) and make sure the time field is either 0 or greater than the current timestamp minus an expiration value (like 500). To get a list of users in the room you can select the data from the online table doing the same thing for time and also make sure invisible isn't set to 1. Use the room field to find out which room they are in.