- dodaj
order by
klauzula sortowania według identyfikatora podróży - utwórz
$lastTripID
zmienna do sprawdzenia, kiedy otrzymasz „nogi” z „nowej podróży” - [zalecane ] użyj
join
aby wybrać dane z wielu tabel
Kod:
<?php
$legsQuery = "
select
trips.tripID,
legs.depart,
legs.arrive
from
legs
inner join trips on trips.tripID = legs.tripID
order by
trips.tripID
";
$legsQueryResult = mysql_query($legsQuery) or die("QUERY LEG ERROR: " . mysql_error());
$lastTripID = null;
while ($row = mysql_fetch_assoc($legsQueryResult)) {
if ( $row['tripID'] !== $lastTripID ) {
echo $row['tripID'], "\n";
$lastTripID = $row['tripID'];
}
print_r($row);
}