Did you put the code posted above into the template? You can't put php in a template. You need to put the php part into your php page and then just the html into the template.
Assign the output to a variable and then use the variable in the template.
Example... you have this:
PHP Code:
for ($i=0; $i<=$infocount; $i++){
$fp = @fsockopen ($info["address"], $info["port"], $errno, $errstr, $timeout);
if ($fp) {
echo "<center><img src='status/rspserver/online.gif' />";
}else{
echo "<center><img src='status/rspserver/offline.gif' />";
}
}
What you want to do is in your php page, put this:
PHP Code:
for ($i=0; $i<=$infocount; $i++){
$fp = @fsockopen ($info["address"], $info["port"], $errno, $errstr, $timeout);
if ($fp) {
$myvariable = "<center><img src='status/rspserver/online.gif' />";
}else{
$myvariable = "<center><img src='status/rspserver/offline.gif' />";
}
}
Then in your template, put $myvariable where you want that image to be.