added documents

This commit is contained in:
2024-03-24 21:50:52 +01:00
parent 59ffa90c49
commit 1acac35b1b

View File

@@ -120,7 +120,7 @@ if(isset($_GET['write_success'])){
<P>Dámy a pánové jenž aspirují na titul "Kalské Borec" to budou mít letos trošku jednodušší. Pojednou jen 3 okruhy. Freeride -> XC -> Junior</P>
<table class="w3-table w3-striped w3-bordered w3-border w3-white"><tr><th>ID</th><th>Přezdívka / Team</th><th>Závod</th><th>Čas</th></tr>
<?
if(in_array(5, array_keys($reg_racers))){
if($reg_racers_5 != null){
foreach($reg_racers_5 as $racer){
echo '<tr><td>'.$racer['ID'].'</td><td>'.$racer["NICK"].'</td><td>'.$racer["RACE"].'</td><td>'.$racer["TIME"].'</td></tr>';
}
@@ -143,7 +143,7 @@ if(isset($_GET['write_success'])){
<h3>Registrovaní</h3>
<table class="w3-table w3-striped w3-bordered w3-border w3-white"><tr><th>ID</th><th>Přezdívka / Team</th><th>Závod</th><th>Čas</th></tr>
<?
if(in_array(4, array_keys($reg_racers))){
if($reg_racers_4 != null){
foreach($reg_racers_4 as $racer){
echo '<tr><td>'.$racer['ID'].'</td><td>'.$racer["NICK"].'</td><td>'.$racer["RACE"].'</td><td>'.$racer["TIME"].'</td></tr>';
}
@@ -167,7 +167,7 @@ if(isset($_GET['write_success'])){
<h3>Registrovaní</h3>
<table class="w3-table w3-striped w3-bordered w3-border w3-white"><tr><th>ID</th><th>Přezdívka / Team</th><th>Závod</th><th>Čas</th></tr>
<?
if(in_array(3, array_keys($reg_racers))){
if($reg_racers_3 != null))){
foreach($reg_racers_3 as $racer){
echo '<tr><td>'.$racer['ID'].'</td><td>'.$racer["NICK"].'</td><td>'.$racer["RACE"].'</td><td>'.$racer["TIME"].'</td></tr>';
}
@@ -190,7 +190,7 @@ if(isset($_GET['write_success'])){
<h3>Registrovaní</h3>
<table class="w3-table w3-striped w3-bordered w3-border w3-white"><tr><th>ID</th><th>Přezdívka / Team</th><th>Závod</th><th>Čas</th></tr>
<?
if(in_array(2, array_keys($reg_racers))){
if($reg_racers_2 != null))){
foreach($reg_racers_2 as $racer){
echo '<tr><td>'.$racer['ID'].'</td><td>'.$racer["NICK"].'</td><td>'.$racer["RACE"].'</td><td>'.$racer["TIME"].'</td></tr>';
}
@@ -213,7 +213,7 @@ if(isset($_GET['write_success'])){
<h3>Registrovaní</h3>
<table class="w3-table w3-striped w3-bordered w3-border w3-white"><tr><th>ID</th><th>Přezdívka / Team</th><th>Závod</th><th>Čas</th></tr>
<?
if(count($reg_racers_1) > 0){
if($reg_racers_1 != null){
foreach($reg_racers_1 as $racer){
echo '<tr><td>'.$racer['ID'].'</td><td>'.$racer["NICK"].'</td><td>'.$racer["RACE"].'</td><td>'.$racer["TIME"].'</td></tr>';
}