I’m kinda new to PHP so just wondering why this won’t display the image? It just gives me a broken image link, and the server is definetly up, and the images are definetly in the folder
[php]$open = fsockopen(72.8.157.56, 25565, $errstr, $errno,0.5);
if($open) {
//online
$mc_image = “online.png”;
} else {
//offline
$mc_image = “offline.png”;
}
?>
[/php]