hi all,
iam looking for a refresh script for our server status.
ive tryed the
*meta-code(html)*= (<meta http-equiv="refresh" content="240;url=blabla">)
*function refreshme (java)
ive also found some php-script, but the problem is with these scrips is that the reload/refresh the howl page.
This is a example of the script i currently using:
What i need is a script that only reload/refesh this part<?php
$ip = "#myip";
$port = "#serverport";
if (! $sock = @fsockopen($ip, $port, $num, $error, 5))
echo "<img src='../images/image_offline.jpg' />";
else{
echo "<img src='../images/image_online.jpg' />";
fclose($sock);
}
?>