Quote:
Originally Posted by Rene1999
Bitte hier gucken  bevor fragen stellen 
|

+ 50 tabs = 50 requests/5 seconds = 10 requests per second. Its not smart to use the meta refresh tag.
Code:
<meta http-equiv="refresh" content="5; url=server_status.php">
At least with such a tight loop. People could launch a distributed denial of service attack from their web browser with timings this tight. You should remove it or increase it to avoid it being abused.
Code:
<meta http-equiv="refresh" content="60; url=server_status.php">
If you wish to have the status information to update in real time, you could always look into AJAX PHP.