How To Display The Database Table Names List In Codeigniter

[Solved] How To Display The Database Table Names List In Codeigniter | Php Frameworks Codeigniter - Code Explorer | yomemimo.com
Question : how to display the database table names list in codeigniter

Answered by : aditya-8vaaam3igkhd

$tables = $this->db->list_tables();
foreach ($tables as $table)
{ echo $table;
}

Source : https://stackoverflow.com/questions/34151291/how-to-display-the-database-table-names-list-in-codeigniter | Last Update : Fri, 30 Jul 21

Answers related to how to display the database table names list in codeigniter

Code Explorer Popular Question For Php Frameworks Codeigniter