The script loops forever, and has the form:
Pseudocode of course:
Loop Forever{
Get some info from database;
Print that info;
Sleep(5);
}
The problem seems to be that because this script doesn't "end" -- php will not let somebody else run it. Does PHP queue requests for a script?
Sorry, I am somewhat new to this, and am trying to make some sense out of it.