Rev 5 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1 |
aurelien |
1 |
<?
|
|
|
2 |
|
|
|
3 |
include("connect.php");
|
|
|
4 |
|
|
|
5 |
include_once 'configuration/car_config.inc.php' ;
|
|
|
6 |
|
|
|
7 |
if (!PARTICIPANT_EST_ADULTE) {
|
|
|
8 |
$requete = mysql_query("select count(PARTICIPANT_ID) from PARTICIPANT where PARTICIPANT_ADULTE=0");
|
|
|
9 |
if ($parts = mysql_fetch_row($requete))
|
|
|
10 |
echo "<div class='nombre_inscrits' width='570' align='right'>ODS Junior compte aujourd'hui ".$parts[0]." inscrits</div>";
|
|
|
11 |
}
|
|
|
12 |
else {
|
|
|
13 |
$requete = mysql_query("select count(PARTICIPANT_ID) from PARTICIPANT where PARTICIPANT_ADULTE=1");
|
|
|
14 |
if ($parts = mysql_fetch_row($requete))
|
|
|
15 |
echo "<div class='nombre_inscrits' width='570' align='right'>ODS compte aujourd'hui ".$parts[0]." inscrits</div>";
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
?>
|