I have a website that is a chat room network where you can join and create chat rooms.
I just need a basic php script on how deleting a room from the rooms table when there hasn't been any messages posted in it for .. lets say.. an hour.
the tables involved are:
Chat (table for the messages)
- posted (stores NOW() as datetime)
- room (the ID of the room its posted in)
Rooms
- id
- created
With that information could someone please help me conjure a script that cleans old rooms  thanks
|