Parcourir la source

Fixed: remove second table

Foppe Hemminga il y a 6 ans
Parent
commit
792d70085d
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      index.php

+ 5 - 1
index.php

@@ -75,6 +75,7 @@
 			<?php endwhile; ?>
             </tbody>
         </table>
+        <!--
         <?php
         $query = sprintf("SELECT * FROM race_program
         WHERE race_date >= %s ORDER BY race_date, venue, race;", $conn->quote($date->format('Y-m-d')));
@@ -96,7 +97,9 @@
 			<?php
 			while ( $row = $stmt3->fetch( PDO::FETCH_ASSOC ) ) : ?>
                 <tr>
+                    -->
                     <!-- <td><?php // echo htmlspecialchars($row['id']); ?></td> -->
+                    <!--
                     <td><?php echo htmlspecialchars($row['venue']); ?></td>
                     <td><?php echo htmlspecialchars($row['state']); ?></td>
                     <td><?php echo htmlspecialchars($row['race_date']); ?></td>
@@ -107,6 +110,7 @@
 			<?php endwhile; ?>
             </tbody>
         </table>
+        -->
 <table class="table table-striped table-bordered">
     <?php
     $table_head = <<<TABLEHEAD
@@ -174,7 +178,7 @@ TAG;
         <td><?php if ($row['torn']) { echo $img; }; ?></td>
     </tr>
 	<?php endwhile; ?>
-</table>
+        </table>
     <?php
     echo $table_foot;