Merhaba sorun şu
error_reporting(0);
$json_url=file_get_contents('http://sotyaz.mv/get.php');
//$ob= simplexml_load_file($xml_url);
//$json = json_encode($ob);
$data = json_decode($json_url, true);

echo '

SotYaz

';
echo 'Bir oyun seçin:
';


foreach ($data as &$leauge) {
$f=0;
$s=0;
echo '

'.$leauge['leauge_name'].'

';
foreach ($leauge as &$game) {
if (mb_strlen($game['home']) > 2 or mb_strlen($game['guest']) > 2) {
if ($game['start_time']=="00:00") {
echo $game['home'].' - '.$game['guest'].'('.$game['goals_home'].' - '.$game['goals_guest'].')'.'
';
}else {
$game_no=md5($game['home'].$game['guest']);
echo ''.$game['home'].' - '.$game['guest'].'('.$game['start_time'].')'.'
';
}
$s++;
}
}
$f++;

}


?>

Şu kodda $s++ istediğim gibi çalışıp sonuç veriyor. Ama $f++ hep 0 sonucunu veriyor. Bunu nasıl çöze bilirim?