Hey, I'm new here, and I was hoping I could get some help on a current project I've given my self. Right now there is an online radio site that uses shoutcast to broadcast. It does not have enough people to do 24/7 broadcasting, so I'm trying to resolve the issue of downtime they have. My current idea is to have a php script which echos two different html pages depending on the current status of the radio server. Right now, the radio status has a variable, $streamstatus, and when it equals 1, its online, 0 is offline. This is working perfectly so far. I want it to run this page every 60 seconds without disrupting the current song. So, ha, this is getting hard for me to explain. But lets say they load the page, and a DJ is online. The listen goes along listening to music for an hour, but I want it to, while the listen is listening, to be constantly refreshing to check if there is still a DJ online without disrupting the current stream. That way, say, after an hour, the DJ signs off. I THEN want the page to refresh during the minute it checks itself. Then, while the DJ is offline, a new page is loaded with some normal backup music playing. During this time, I also want it refreshing the page without disruption to see if a DJ gets back on. If the DJ gets on, it will refresh the page to a new page with the DJ broadcasting. Right now I have something that shows the current DJ, current listeners, and current song. This always updates the page every 60secs though. So, the main thing that I seem to be having a problem with is having the php script check the page, then refresh the page if certain standards are met. So, quick recap after that large bit of info. I want a php script to check a page for certain standards, and if certain standards are met, I want it to refresh the page. Otherwise, I do not want the page to be refreshed. DJ is online ---Page check, DJ is still online--> NO page refresh ---Page Check, No DJ online--> Page refresh/change ---Page Check, DJ online--> Page refresh/change I'm hoping that little graph-like thing will help with any misunderstandings. I'm sure if anyone has any questions about what I'm asking, I can answer them. I'm REALLY hoping someone can help me with this. I guess its sorta like a chat program? Constantly refreshing, but not disrupting anything.