<?php
$result = mysql_query("SELECT * FROM tabelle");
while ($row = mysql_fetch_array($result)) {
echo $row['feld'] . "<br>";
}
?>
<?php
$result = mysql_query("SELECT * FROM tabelle");
while ($row = mysql_fetch_array($result)) {
echo $row['feld'] . "<br>";
}
?>