nach tabellen suchen!

habs geschafft! ALLEINE!

PHP:
<?
 
 $tables_result = mysql_query("SHOW TABLES");
 
 	while ($tables_row = @mysql_fetch_array($tables_result))
 	{
 		echo "<option value=$tables_row[0]>$tables_row[0]</option>";
 	}
 ?>
 
Zurück