Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
15 righe
573 B
15 righe
573 B
<? |
|
$return = false; |
|
if (!empty($sourceID)) { |
|
$round = $pdo->go("SELECT b_gare_round.codice, b_gare_round.codice_gara, b_gare_round.numero FROM b_gare_round |
|
JOIN b_gare_richieste ON b_gare_round.codice = b_gare_richieste.codice_round |
|
WHERE b_gare_richieste.codice = :codice",[":codice"=>$sourceID]); |
|
if ($round->rowCount() > 0) { |
|
$round = $round->fetch(PDO::FETCH_ASSOC); |
|
$tmp = gara::init($round["codice_gara"],$round["codice"]); |
|
if ($tmp !== false) { |
|
$return = true; |
|
} |
|
} |
|
} |
|
?>
|
|
|