PHP-Code:
for( $i=0 ; $i<mysql_num_rows( $table ) ; $i++ )
{
echo "
";
echo $tabellenname = mysql_tablename( $table , $i );
echo "
..............................................".
" ......................................................
";
$result = mysql_query("SHOW COLUMNS FROM `$tabellenname`");
if (!$result) {
echo 'Abfrage konnte nicht ausgeführt werden: ' . mysql_error();
exit;
}
if (mysql_num_rows($result) > 0) {
while ($row = mysql_fetch_assoc($result)) {
print_r($row["Field"]);
echo "
";
}
}
}
so hab ich das ganze jetzt gelöst scheint zu funktionieren