Serie D Girone D
[source]
<?php
$squadre= array(
array(“AGLIANESE”,”AGLIANESE”),
array(“ALCIONE MILANO”, “ALCIONE%20MILANO”),
array(“ATHLETIC CARPI”, “ATHLETIC%20CARPI”),
array(“BAGNOLESE”, “BAGNOLESE”)
);
//print_r($squadre);
$k = count($squadre);
for ($i = 0, $n = count($squadre) ; $i < $n ; $i++)
{
$squ =$squadre[$i][1];
$url = file_get_contents(‘https://www.campionandoalivorno.it/iwebkit/cget_singolomister.asp?camp=2010&squadra=’ . $squ );
$all = json_decode($url);
//print_r($all);
echo ‘<strong>’, $squadre[$i][0], ‘</strong> <br/ >’;
if ($all[0]->idalle != “”)
{echo ‘<strong> ALLENATORE: </strong>’, $all[0]->idalle, ‘ <br/ >’;}
ELSE
{echo ‘<strong> ALLENATORE: </strong> <br/ >’;}
$url = file_get_contents(‘https://www.campionandoalivorno.it/iwebkit/cget_giocatori2021s.asp?squadra=’. $squ . ‘&anno=2000’);
$rosa = json_decode($url);
$k = count($rosa);
//echo $k, $i;
print_r($rosa);
//echo $rosa[$i]->nome, ‘<br/ >’;
$portieri = array();
$difensori = array();
$centrocampisti = array();
$attaccanti = array();
$vari = array();
$z = 0;56
$ruolo = $rosa[$z]->ruolo;
$nome = $rosa[$z]->nome;
$cognome = $rosa[$z]->cognome;
$anno = $rosa[$z]->annonasc;
echo $ruolo, $z, $k, $nome, $cognome, $anno;
$z++;
for ($p = 0 ; $p < $k ; $p++)
{
if ($ruolo == “Portiere”)
{
$portieri= [$p=>[
“nome” => $nome,
“cognome” => $cognome,
“annonasc” => $anno]];
print_r($portieri);
echo “pippo”, ‘<br/ >’;
}
}
}
?>
[/source]