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
452 B
8 righe
452 B
<? |
|
$show = false; |
|
if (isset($round)) { |
|
$check = $pdo->go("SELECT b_concorsi_buste.codice FROM b_concorsi_buste JOIN r_partecipanti_concorsi ON b_concorsi_buste.codice_partecipante = r_partecipanti_concorsi.codice |
|
WHERE r_partecipanti_concorsi.conferma = 'S' AND r_partecipanti_concorsi.codice_round = :codice_round LIMIT 0,1",[":codice_round"=>$round["codice"]])->rowCount(); |
|
if ($check > 0) { $show = true; } |
|
} |
|
?>
|
|
|