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.
14 righe
519 B
14 righe
519 B
<? |
|
if (!isset($root)) { |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (!$_SESSION["utente"]->check(true)) { die(); } |
|
} |
|
if (!empty($_SESSION["utente"]) && empty($_SESSION["ente"])) { |
|
$badge = $pdo->go("SELECT codice FROM b_consulenze WHERE stato > 0 AND stato < 100")->rowCount(); |
|
if ($badge > 0) { |
|
echo "<span data-target='/backend/gare/badge.php' class='badge badge-danger badge-count'>" . $badge . "</span>"; |
|
} |
|
} |
|
|
|
?>
|
|
|