jo kommt bei mir bisschen unstrukturiert raus darum will ich das alles in eine tabelle kommt. wie kann ich das aber anstellen?
jede row bruahct eine spalte
PHP:
<?PHP
$sqlhost='localhost';
$username='root';
$passwort='';
$database='archiv';
print "CD-Archiv" ." <br /> <br /> \n";
$db = mysql_connect ($sqlhost,$username,$passwort);
mysql_select_db ($database);
$result = mysql_query("SELECT * FROM archiv ORDER BY Unique_ID");
while ($row = mysql_fetch_array($result))
{
echo $row['Unique_ID']." \n";
echo $row['Bezeichnung']." \n";
echo $row['Kategorie']." \n";
echo $row['Sprache']." \n";
echo $row['Ordner']." <br /> \n";
}
?>
jede row bruahct eine spalte