<?php
$image_on = 'https://solusitotal.com/ymonline.gif';
$image_off = 'https://solusitotal.com/ymoffline.gif';
$yahoo_id = 'billing_solusitotal';
$status = intval(file_get_contents('http://opi.yahoo.com/online?u='.$yahoo_id.'&m=t&t=1'));
if($status) {
$loc = $image_on;
} else {
$loc = $image_off;
}
header('Location:'.$loc);
?>