Browse Source

Add race time to table

Foppe Hemminga 6 năm trước cách đây
mục cha
commit
39aaba7104
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      index.php

+ 1 - 1
index.php

@@ -29,7 +29,7 @@
             ON horses.race_date = race_program.race_date
                 AND horses.venue = race_program.venue
             WHERE horses.race_date >= %s
-            ORDER BY race_date, venue, race;", $conn->quote(date("Y-m-d")));
+            ORDER BY horses.race_date, horses.venue, horses.race;", $conn->quote(date("Y-m-d")));
 		$stmt = $conn->query($query);
 		// $r = $stmt->fetch(PDO::FETCH_ASSOC);
         ?>