<?php
include ('functions.inc');
open_database();
echo "<table width='98%' cellspacing='5' border='0'>\n";
$result = mysql_query("SELECT id, name, vorname, aktiv FROM fpmembers WHERE aktiv='Y' ORDER BY name");
$cellcount = 0;
echo "<tr>\n";
while ( $row = mysql_fetch_array($result) ) {
if ($cellcount == 4) {
echo ("</tr>\n<tr>\n<td colspan='4'>\n<hr>\n</td>\n</tr>\n<tr>\n");
$cellcount = 0;
}
$cellcount++;
echo "<td valign='top'><br><b>".$row['vorname']." ".$row['name']."</b><br><br>\n";
}
echo "</tr>\n";
echo "</table>\n";
?>
Mitglieder
Zugriffe: 1370