I write:
[img ]http://212.251.247.82/statuscheck/server_status.php?ip=chrhamscape.no-ip.biz&port=43594[/img]
but the picture won't show up. Only this appears: 
btw here's the code:
Code:
<?php error_reporting (E_ALL ^ E_NOTICE); ?>
<?php
$ip = "$_GET[ip]"; //put your ipaddress here
$port= "$_GET[port]"; //the port number
$online = '<img src="online.png">'; //This can be text or image
$offline = '<img src="offline.png">'; //This can be text or image
if (! $sock = @fsockopen($ip, $port, $num, $error, 5)) //Checks the server's status
{
echo "$offline"; //When server status is offline, output this
echo "<br><font color=blue>To get this image on forums use this code:<br>";
echo "
</font>";
}
else
{
echo "$online"; //Else, output this
echo "<br><font color=blue>To get this image on forums use this code:<br>";
echo "
</font>";
}