so soieht bis jetzt meine foreach schleife aus:
PHP
foreach ($locations_array as $location) {
?>
<li rel="<?= $i ?>" data-longitude="<?= $location['longitude'] ?>" data-latitude="<?= $location['latitude'] ?>">
<h3><?= $location['Title'] ?></h3>
<p><?= $location['Adress'] ?><br>
<?= $location['City'] ?><br>
<?= $location['Country'] ?>
</p>
</li>
<?
$i++;
}
Alles anzeigen
und meine db abfrage:
PHP
$SQL = "SELECT * FROM retailers WHERE pickup='1' ORDER BY Country, Title ASC";
$locations_array = $my_db->QueryAllRecords($SQL);
das ganze gibt mir eine liste sortiert nach country und dann title aus... jetzt möchte ich aber eine liste haben die wie folgt aussieht