mysqli_list_tables statt mysql_list_tables
Wie geht das?
mysqli_list_tables gibts nämlich nicht
Danke callt
					Wie geht das?
mysqli_list_tables gibts nämlich nicht
Danke callt

 
 
    $result = mysqli_query($db, "SHOW TABLES FROM ".$db_name." ");
    while($row = mysqli_fetch_array($result)){
        echo $row[0]."<br>";
    } 
 
							
						
 
 
Comment