gestione gare pubbliche
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.
 
 
 
 
 

8 righe
424 B

<?
$show = false;
if (isset($round)) {
$check = $pdo->go("SELECT b_gare_buste.codice FROM b_gare_buste JOIN r_partecipanti_gare ON b_gare_buste.codice_partecipante = r_partecipanti_gare.codice
WHERE r_partecipanti_gare.conferma = 'S' AND r_partecipanti_gare.codice_round = :codice_round LIMIT 0,1",[":codice_round"=>$round["codice"]])->rowCount();
if ($check > 0) { $show = true; }
}
?>