function count_mitfahrer($angebot_id) { $cr = fetch_coriders($angebot_id); return count($cr); }
echo $r['treffpunkt']; ?> </p> <p>Preis: <?php echo $r['preis']; ?> </p> <!-- inner loop for "mitfahrer" --> <hr> <p>Mitfahrer:</p> <?php if (count_mitfahrer($r['id']) != 0) { ?> <ol> <?php $mitfahrer = fetch_coriders($r['id']); foreach ($mitfahrer as $mf) { $name = $mf['name']; echo "<li>{$name}</li>"; } ?> </ol> <?php } ?> <br> <p> <!-- add class="dead" if not available--> <a href="#" class="button <?php echo notfree($plaetze_frei); ?> <?php